
    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_ffb2b3f72b8da6cdb5c20776.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.135000;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_42ac65ef80bee0df680f1064.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_6c69ad2f85ccd822fa8da323.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040000;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_a2ed0e64200c16491e367741.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_49a6e24946e7a3a028cb9922.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_73cca922b2c227a114be1596.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.175000;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;}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239999,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.781200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.714000px;}
.ls5{letter-spacing:-0.558000px;}
.ls6{letter-spacing:-0.325314px;}
.ls8{letter-spacing:-0.252000px;}
.ls3{letter-spacing:-0.222000px;}
.ls2{letter-spacing:-0.168000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.135000px;}
.ls4{letter-spacing:0.222000px;}
.ls0{letter-spacing:2042.817000px;}
.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;}
}
.ws52{word-spacing:-12.432000px;}
.ws0{word-spacing:-12.000000px;}
.ws53{word-spacing:-10.500000px;}
.ws69{word-spacing:-10.332000px;}
.ws79{word-spacing:-10.080000px;}
.ws78{word-spacing:-9.135000px;}
.ws77{word-spacing:-9.000000px;}
.ws2{word-spacing:-8.880000px;}
.ws15{word-spacing:-8.658000px;}
.ws1{word-spacing:-8.400000px;}
.ws41{word-spacing:-8.232000px;}
.ws2c{word-spacing:-6.576240px;}
.ws10{word-spacing:-3.292200px;}
.ws11{word-spacing:-2.957400px;}
.ws12{word-spacing:-2.932800px;}
.ws5b{word-spacing:-2.901600px;}
.ws2f{word-spacing:-2.820000px;}
.ws1b{word-spacing:-2.678400px;}
.ws72{word-spacing:-2.622600px;}
.ws34{word-spacing:-2.455200px;}
.ws61{word-spacing:-2.322000px;}
.ws3f{word-spacing:-2.312400px;}
.ws5f{word-spacing:-2.199600px;}
.wse{word-spacing:-2.176200px;}
.ws45{word-spacing:-2.120400px;}
.ws23{word-spacing:-2.008800px;}
.ws64{word-spacing:-1.974000px;}
.ws22{word-spacing:-1.953000px;}
.wsb{word-spacing:-1.841400px;}
.ws14{word-spacing:-1.748400px;}
.wsa{word-spacing:-1.674000px;}
.ws39{word-spacing:-1.450800px;}
.ws1c{word-spacing:-1.395000px;}
.ws17{word-spacing:-1.283400px;}
.ws35{word-spacing:-1.242000px;}
.wsc{word-spacing:-1.171800px;}
.ws56{word-spacing:-1.128000px;}
.ws28{word-spacing:-1.116000px;}
.ws26{word-spacing:-1.004400px;}
.ws65{word-spacing:-0.966000px;}
.ws4a{word-spacing:-0.918000px;}
.ws83{word-spacing:-0.900000px;}
.ws24{word-spacing:-0.892800px;}
.ws2e{word-spacing:-0.846000px;}
.ws6c{word-spacing:-0.725400px;}
.ws92{word-spacing:-0.705600px;}
.ws81{word-spacing:-0.675000px;}
.ws29{word-spacing:-0.669600px;}
.ws51{word-spacing:-0.630000px;}
.ws94{word-spacing:-0.604800px;}
.ws43{word-spacing:-0.594000px;}
.ws4{word-spacing:-0.567600px;}
.ws55{word-spacing:-0.507600px;}
.ws19{word-spacing:-0.446400px;}
.ws16{word-spacing:-0.444000px;}
.ws47{word-spacing:-0.432000px;}
.ws75{word-spacing:-0.420000px;}
.ws54{word-spacing:-0.225600px;}
.ws1a{word-spacing:-0.223200px;}
.ws59{word-spacing:-0.162000px;}
.ws5c{word-spacing:-0.111600px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:0.055800px;}
.ws4e{word-spacing:0.167400px;}
.ws67{word-spacing:0.168000px;}
.ws66{word-spacing:0.294000px;}
.ws74{word-spacing:0.325314px;}
.wsf{word-spacing:0.334800px;}
.ws7d{word-spacing:0.360000px;}
.ws32{word-spacing:0.446400px;}
.ws5e{word-spacing:0.451200px;}
.ws30{word-spacing:0.502200px;}
.ws33{word-spacing:0.613800px;}
.ws5{word-spacing:0.619200px;}
.ws36{word-spacing:0.648000px;}
.ws1e{word-spacing:0.669600px;}
.ws46{word-spacing:0.781200px;}
.ws2d{word-spacing:0.789600px;}
.ws4f{word-spacing:0.810000px;}
.ws8d{word-spacing:0.990000px;}
.ws42{word-spacing:1.026000px;}
.ws3c{word-spacing:1.128000px;}
.ws76{word-spacing:1.134000px;}
.ws4d{word-spacing:1.171800px;}
.ws48{word-spacing:1.188000px;}
.ws40{word-spacing:1.297200px;}
.ws1d{word-spacing:1.395000px;}
.ws50{word-spacing:1.458000px;}
.ws44{word-spacing:1.562400px;}
.ws71{word-spacing:1.566000px;}
.ws1f{word-spacing:1.618200px;}
.ws68{word-spacing:1.722000px;}
.ws18{word-spacing:1.785600px;}
.ws5d{word-spacing:1.917600px;}
.ws62{word-spacing:1.932000px;}
.ws57{word-spacing:2.030400px;}
.ws38{word-spacing:2.232000px;}
.ws31{word-spacing:2.455200px;}
.ws6d{word-spacing:2.538000px;}
.ws49{word-spacing:2.592000px;}
.ws82{word-spacing:2.700000px;}
.ws58{word-spacing:2.707200px;}
.ws90{word-spacing:2.745000px;}
.ws5a{word-spacing:2.754000px;}
.ws8{word-spacing:2.790000px;}
.ws4c{word-spacing:2.901600px;}
.ws37{word-spacing:3.013200px;}
.ws6{word-spacing:3.044400px;}
.ws63{word-spacing:3.108000px;}
.ws3a{word-spacing:3.124800px;}
.ws21{word-spacing:3.180600px;}
.ws20{word-spacing:3.236400px;}
.ws7{word-spacing:3.457200px;}
.ws60{word-spacing:3.515400px;}
.ws6f{word-spacing:3.627000px;}
.ws7a{word-spacing:3.735000px;}
.ws6b{word-spacing:3.961800px;}
.ws3d{word-spacing:4.004400px;}
.ws93{word-spacing:4.183200px;}
.ws6e{word-spacing:4.320000px;}
.ws3e{word-spacing:4.455600px;}
.ws80{word-spacing:4.545000px;}
.ws7c{word-spacing:4.995000px;}
.ws8a{word-spacing:5.085000px;}
.ws13{word-spacing:5.245200px;}
.ws2a{word-spacing:5.301000px;}
.ws70{word-spacing:5.508000px;}
.ws4b{word-spacing:5.691600px;}
.ws73{word-spacing:6.138000px;}
.ws85{word-spacing:6.165000px;}
.ws6a{word-spacing:6.264000px;}
.ws27{word-spacing:6.417000px;}
.ws8e{word-spacing:6.570000px;}
.ws9{word-spacing:7.030800px;}
.ws87{word-spacing:7.920000px;}
.ws7f{word-spacing:8.325000px;}
.ws88{word-spacing:8.685000px;}
.ws89{word-spacing:8.775000px;}
.ws25{word-spacing:8.928000px;}
.ws3b{word-spacing:9.080400px;}
.ws91{word-spacing:10.432800px;}
.ws7e{word-spacing:10.575000px;}
.ws8b{word-spacing:13.275000px;}
.ws86{word-spacing:13.455000px;}
.ws84{word-spacing:16.470000px;}
.ws8c{word-spacing:18.135000px;}
.ws8f{word-spacing:22.815000px;}
.ws7b{word-spacing:31.275000px;}
.ws2b{word-spacing:63.588000px;}
._f{margin-left:-19.396800px;}
._a{margin-left:-15.119976px;}
._8{margin-left:-13.061640px;}
._9{margin-left:-7.198200px;}
._5{margin-left:-6.103200px;}
._4{margin-left:-4.117860px;}
._3{margin-left:-2.739960px;}
._2{margin-left:-1.116000px;}
._0{width:1.890000px;}
._1{width:3.560400px;}
._c{width:39.143753px;}
._e{width:41.075753px;}
._d{width:43.049753px;}
._6{width:63.419753px;}
._b{width:684.514653px;}
._7{width:685.669347px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:24.486000px;}
.fsd{font-size:31.482000px;}
.fs7{font-size:32.531400px;}
.fse{font-size:32.881200px;}
.fs9{font-size:42.000000px;}
.fsa{font-size:44.400000px;}
.fs0{font-size:45.000000px;}
.fs10{font-size:50.400000px;}
.fs4{font-size:51.600000px;}
.fsc{font-size:54.000000px;}
.fsb{font-size:55.200000px;}
.fs6{font-size:55.800000px;}
.fs8{font-size:56.400000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs5{font-size:75.600000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:65.260950px;}
.y1e{bottom:104.173350px;}
.ya4{bottom:118.273350px;}
.y99{bottom:122.520600px;}
.y44{bottom:122.525400px;}
.y7a{bottom:122.525550px;}
.y60{bottom:126.021900px;}
.ya3{bottom:136.623600px;}
.y79{bottom:136.625400px;}
.y98{bottom:140.874600px;}
.y1d{bottom:144.682950px;}
.y97{bottom:154.976100px;}
.y78{bottom:154.977600px;}
.y43{bottom:164.907000px;}
.y1c{bottom:164.930550px;}
.y96{bottom:169.077600px;}
.y77{bottom:173.329650px;}
.y42{bottom:185.162400px;}
.y1b{bottom:185.178150px;}
.y95{bottom:187.429650px;}
.y76{bottom:191.681850px;}
.y41{bottom:205.417800px;}
.y1a{bottom:205.425750px;}
.y93{bottom:205.780350px;}
.y94{bottom:205.781850px;}
.y92{bottom:219.881850px;}
.y40{bottom:225.673200px;}
.y19{bottom:225.673350px;}
.y91{bottom:233.981850px;}
.y16{bottom:245.869350px;}
.ya2{bottom:245.917800px;}
.y3f{bottom:245.923200px;}
.y18{bottom:245.923350px;}
.y17{bottom:250.568550px;}
.y8f{bottom:252.330600px;}
.y90{bottom:252.333900px;}
.y15{bottom:266.124750px;}
.ya0{bottom:266.157000px;}
.y74{bottom:266.173200px;}
.ycc{bottom:266.180400px;}
.y75{bottom:270.668700px;}
.y8e{bottom:270.684600px;}
.ya1{bottom:270.818550px;}
.y8d{bottom:284.786100px;}
.y14{bottom:286.380150px;}
.y3e{bottom:286.390800px;}
.y9f{bottom:286.412400px;}
.y73{bottom:286.423200px;}
.y5f{bottom:286.425600px;}
.ycb{bottom:286.428600px;}
.y8c{bottom:298.886100px;}
.y13{bottom:306.635550px;}
.y3d{bottom:306.646200px;}
.y9e{bottom:306.667800px;}
.y72{bottom:306.673200px;}
.yca{bottom:306.676800px;}
.y5e{bottom:306.690000px;}
.y12{bottom:326.890950px;}
.y3c{bottom:326.901600px;}
.y9d{bottom:326.923200px;}
.yc9{bottom:326.925000px;}
.y5d{bottom:326.937600px;}
.y11{bottom:347.146350px;}
.y3b{bottom:347.157000px;}
.y71{bottom:347.167800px;}
.yc8{bottom:347.173200px;}
.y5c{bottom:347.185200px;}
.y10{bottom:367.401750px;}
.y3a{bottom:367.412400px;}
.y70{bottom:367.423200px;}
.y5b{bottom:367.432800px;}
.y8b{bottom:371.918700px;}
.y6f{bottom:372.068550px;}
.yf{bottom:387.657150px;}
.y39{bottom:387.667800px;}
.y8a{bottom:387.673200px;}
.y5a{bottom:387.680400px;}
.y36{bottom:407.907000px;}
.ye{bottom:407.912550px;}
.y6e{bottom:407.917800px;}
.y38{bottom:407.923200px;}
.y59{bottom:407.928000px;}
.y37{bottom:412.568550px;}
.y35{bottom:428.162400px;}
.yd{bottom:428.167950px;}
.y6d{bottom:428.173200px;}
.y58{bottom:428.175600px;}
.y34{bottom:448.417800px;}
.y57{bottom:448.423200px;}
.yc{bottom:448.423350px;}
.y9c{bottom:452.918700px;}
.y56{bottom:468.646200px;}
.y31{bottom:468.651600px;}
.y33{bottom:468.673200px;}
.y6c{bottom:473.168700px;}
.y32{bottom:473.318550px;}
.y55{bottom:488.901600px;}
.y30{bottom:488.907000px;}
.y6b{bottom:488.923200px;}
.yb{bottom:488.923350px;}
.y54{bottom:509.157000px;}
.y2f{bottom:509.162400px;}
.y6a{bottom:509.173200px;}
.y53{bottom:529.412400px;}
.y2e{bottom:529.417800px;}
.y69{bottom:529.423200px;}
.y89{bottom:529.428000px;}
.y52{bottom:549.667800px;}
.y2d{bottom:549.673200px;}
.y88{bottom:549.675600px;}
.ya{bottom:569.911350px;}
.y2c{bottom:569.923200px;}
.y87{bottom:569.928000px;}
.y68{bottom:590.157000px;}
.y9{bottom:590.164350px;}
.y86{bottom:590.175600px;}
.yb6{bottom:594.837600px;}
.yc7{bottom:604.771350px;}
.yb5{bottom:609.091350px;}
.y67{bottom:610.412400px;}
.y8{bottom:610.417350px;}
.y2b{bottom:610.423200px;}
.y51{bottom:614.918700px;}
.yc6{bottom:619.025100px;}
.yb4{bottom:623.345100px;}
.y85{bottom:630.662400px;}
.y66{bottom:630.667800px;}
.y7{bottom:630.670350px;}
.y50{bottom:630.673200px;}
.yc5{bottom:637.531350px;}
.yb3{bottom:637.598850px;}
.y84{bottom:650.917800px;}
.y4f{bottom:650.923200px;}
.y6{bottom:650.923350px;}
.yc4{bottom:651.785100px;}
.yb2{bottom:656.105100px;}
.yc3{bottom:666.038850px;}
.yb1{bottom:670.358850px;}
.y82{bottom:671.173200px;}
.y83{bottom:675.818550px;}
.yc2{bottom:684.545100px;}
.yb0{bottom:688.865100px;}
.y2a{bottom:691.380000px;}
.y4e{bottom:691.396200px;}
.y64{bottom:691.423200px;}
.y5{bottom:691.423350px;}
.y65{bottom:695.918700px;}
.yc1{bottom:698.798850px;}
.yaf{bottom:703.118850px;}
.y29{bottom:711.635400px;}
.y4d{bottom:711.651600px;}
.y63{bottom:711.673200px;}
.y81{bottom:716.168700px;}
.yc0{bottom:717.305100px;}
.yae{bottom:717.372600px;}
.ybf{bottom:731.558850px;}
.yad{bottom:731.626350px;}
.y28{bottom:731.890800px;}
.y4c{bottom:731.907000px;}
.y62{bottom:731.923200px;}
.ybe{bottom:745.812600px;}
.yac{bottom:745.880100px;}
.y27{bottom:752.146200px;}
.y4b{bottom:752.162400px;}
.y80{bottom:752.173200px;}
.ybd{bottom:760.066350px;}
.yab{bottom:760.133850px;}
.y26{bottom:772.401600px;}
.y4a{bottom:772.417800px;}
.ybc{bottom:774.320100px;}
.yaa{bottom:774.387600px;}
.y25{bottom:792.657000px;}
.y4{bottom:792.669600px;}
.y49{bottom:792.673200px;}
.y7f{bottom:792.678000px;}
.ybb{bottom:792.826350px;}
.ya9{bottom:792.893850px;}
.yba{bottom:807.080100px;}
.ya8{bottom:807.147600px;}
.y24{bottom:812.912400px;}
.y48{bottom:812.923200px;}
.y7e{bottom:812.925600px;}
.ya7{bottom:821.401350px;}
.yb9{bottom:825.586350px;}
.y23{bottom:833.167800px;}
.y9a{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y7d{bottom:833.175600px;}
.y9b{bottom:837.668700px;}
.yb8{bottom:839.840100px;}
.ya6{bottom:839.907600px;}
.y22{bottom:853.423200px;}
.y7c{bottom:853.425600px;}
.y47{bottom:853.428000px;}
.yb7{bottom:854.093850px;}
.ya5{bottom:854.161350px;}
.y61{bottom:869.920200px;}
.y7b{bottom:873.673200px;}
.y46{bottom:873.675600px;}
.y21{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y1{bottom:952.912500px;}
.y20{bottom:952.953150px;}
.y45{bottom:953.019600px;}
.h14{height:19.760202px;}
.h12{height:22.792968px;}
.h9{height:23.552734px;}
.h15{height:33.894000px;}
.hc{height:34.942800px;}
.hb{height:35.238000px;}
.h1b{height:35.245200px;}
.h19{height:35.251200px;}
.h1a{height:35.257200px;}
.h10{height:35.830800px;}
.hd{height:36.315000px;}
.h1c{height:36.489600px;}
.he{height:37.251600px;}
.h11{height:39.258000px;}
.h2{height:40.545000px;}
.h8{height:40.566600px;}
.h1d{height:40.672800px;}
.ha{height:41.002800px;}
.h6{height:41.641200px;}
.h13{height:42.519989px;}
.h18{height:42.567989px;}
.h16{height:42.577589px;}
.h17{height:42.587189px;}
.hf{height:43.442400px;}
.h5{height:47.220000px;}
.h1e{height:48.164400px;}
.h7{height:54.734400px;}
.h3{height:55.141200px;}
.h4{height:82.635000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x26{left:89.292113px;}
.x4{left:93.543300px;}
.xd{left:95.551794px;}
.x17{left:99.921150px;}
.x18{left:117.918450px;}
.x5{left:123.585300px;}
.x10{left:206.155200px;}
.x11{left:210.320250px;}
.x1f{left:212.677200px;}
.x19{left:229.902600px;}
.x1a{left:238.232700px;}
.x22{left:256.560900px;}
.x23{left:264.890850px;}
.x6{left:268.584300px;}
.x7{left:272.888250px;}
.xe{left:283.959000px;}
.xf{left:288.124050px;}
.x8{left:292.276650px;}
.x9{left:296.580450px;}
.x20{left:311.411250px;}
.x21{left:319.741350px;}
.xa{left:341.562000px;}
.xb{left:345.727050px;}
.x28{left:359.289188px;}
.x27{left:372.045900px;}
.x12{left:402.456450px;}
.x13{left:406.760250px;}
.x14{left:416.852100px;}
.x15{left:421.155900px;}
.x16{left:426.258000px;}
.x24{left:485.424750px;}
.x1b{left:492.497250px;}
.x25{left:493.700550px;}
.x1d{left:498.493950px;}
.x1c{left:501.104850px;}
.x1e{left:506.823900px;}
.xc{left:604.305000px;}
.x2{left:605.536500px;}
.x3{left:609.752400px;}
@media print{
.v2{vertical-align:-16.694400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.634667pt;}
.ls5{letter-spacing:-0.496000pt;}
.ls6{letter-spacing:-0.289168pt;}
.ls8{letter-spacing:-0.224000pt;}
.ls3{letter-spacing:-0.197333pt;}
.ls2{letter-spacing:-0.149333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.120000pt;}
.ls4{letter-spacing:0.197333pt;}
.ls0{letter-spacing:1815.837333pt;}
.ws52{word-spacing:-11.050667pt;}
.ws0{word-spacing:-10.666667pt;}
.ws53{word-spacing:-9.333333pt;}
.ws69{word-spacing:-9.184000pt;}
.ws79{word-spacing:-8.960000pt;}
.ws78{word-spacing:-8.120000pt;}
.ws77{word-spacing:-8.000000pt;}
.ws2{word-spacing:-7.893333pt;}
.ws15{word-spacing:-7.696000pt;}
.ws1{word-spacing:-7.466667pt;}
.ws41{word-spacing:-7.317333pt;}
.ws2c{word-spacing:-5.845547pt;}
.ws10{word-spacing:-2.926400pt;}
.ws11{word-spacing:-2.628800pt;}
.ws12{word-spacing:-2.606933pt;}
.ws5b{word-spacing:-2.579200pt;}
.ws2f{word-spacing:-2.506667pt;}
.ws1b{word-spacing:-2.380800pt;}
.ws72{word-spacing:-2.331200pt;}
.ws34{word-spacing:-2.182400pt;}
.ws61{word-spacing:-2.064000pt;}
.ws3f{word-spacing:-2.055467pt;}
.ws5f{word-spacing:-1.955200pt;}
.wse{word-spacing:-1.934400pt;}
.ws45{word-spacing:-1.884800pt;}
.ws23{word-spacing:-1.785600pt;}
.ws64{word-spacing:-1.754667pt;}
.ws22{word-spacing:-1.736000pt;}
.wsb{word-spacing:-1.636800pt;}
.ws14{word-spacing:-1.554133pt;}
.wsa{word-spacing:-1.488000pt;}
.ws39{word-spacing:-1.289600pt;}
.ws1c{word-spacing:-1.240000pt;}
.ws17{word-spacing:-1.140800pt;}
.ws35{word-spacing:-1.104000pt;}
.wsc{word-spacing:-1.041600pt;}
.ws56{word-spacing:-1.002667pt;}
.ws28{word-spacing:-0.992000pt;}
.ws26{word-spacing:-0.892800pt;}
.ws65{word-spacing:-0.858667pt;}
.ws4a{word-spacing:-0.816000pt;}
.ws83{word-spacing:-0.800000pt;}
.ws24{word-spacing:-0.793600pt;}
.ws2e{word-spacing:-0.752000pt;}
.ws6c{word-spacing:-0.644800pt;}
.ws92{word-spacing:-0.627200pt;}
.ws81{word-spacing:-0.600000pt;}
.ws29{word-spacing:-0.595200pt;}
.ws51{word-spacing:-0.560000pt;}
.ws94{word-spacing:-0.537600pt;}
.ws43{word-spacing:-0.528000pt;}
.ws4{word-spacing:-0.504533pt;}
.ws55{word-spacing:-0.451200pt;}
.ws19{word-spacing:-0.396800pt;}
.ws16{word-spacing:-0.394667pt;}
.ws47{word-spacing:-0.384000pt;}
.ws75{word-spacing:-0.373333pt;}
.ws54{word-spacing:-0.200533pt;}
.ws1a{word-spacing:-0.198400pt;}
.ws59{word-spacing:-0.144000pt;}
.ws5c{word-spacing:-0.099200pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:0.049600pt;}
.ws4e{word-spacing:0.148800pt;}
.ws67{word-spacing:0.149333pt;}
.ws66{word-spacing:0.261333pt;}
.ws74{word-spacing:0.289168pt;}
.wsf{word-spacing:0.297600pt;}
.ws7d{word-spacing:0.320000pt;}
.ws32{word-spacing:0.396800pt;}
.ws5e{word-spacing:0.401067pt;}
.ws30{word-spacing:0.446400pt;}
.ws33{word-spacing:0.545600pt;}
.ws5{word-spacing:0.550400pt;}
.ws36{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.595200pt;}
.ws46{word-spacing:0.694400pt;}
.ws2d{word-spacing:0.701867pt;}
.ws4f{word-spacing:0.720000pt;}
.ws8d{word-spacing:0.880000pt;}
.ws42{word-spacing:0.912000pt;}
.ws3c{word-spacing:1.002667pt;}
.ws76{word-spacing:1.008000pt;}
.ws4d{word-spacing:1.041600pt;}
.ws48{word-spacing:1.056000pt;}
.ws40{word-spacing:1.153067pt;}
.ws1d{word-spacing:1.240000pt;}
.ws50{word-spacing:1.296000pt;}
.ws44{word-spacing:1.388800pt;}
.ws71{word-spacing:1.392000pt;}
.ws1f{word-spacing:1.438400pt;}
.ws68{word-spacing:1.530667pt;}
.ws18{word-spacing:1.587200pt;}
.ws5d{word-spacing:1.704533pt;}
.ws62{word-spacing:1.717333pt;}
.ws57{word-spacing:1.804800pt;}
.ws38{word-spacing:1.984000pt;}
.ws31{word-spacing:2.182400pt;}
.ws6d{word-spacing:2.256000pt;}
.ws49{word-spacing:2.304000pt;}
.ws82{word-spacing:2.400000pt;}
.ws58{word-spacing:2.406400pt;}
.ws90{word-spacing:2.440000pt;}
.ws5a{word-spacing:2.448000pt;}
.ws8{word-spacing:2.480000pt;}
.ws4c{word-spacing:2.579200pt;}
.ws37{word-spacing:2.678400pt;}
.ws6{word-spacing:2.706133pt;}
.ws63{word-spacing:2.762667pt;}
.ws3a{word-spacing:2.777600pt;}
.ws21{word-spacing:2.827200pt;}
.ws20{word-spacing:2.876800pt;}
.ws7{word-spacing:3.073067pt;}
.ws60{word-spacing:3.124800pt;}
.ws6f{word-spacing:3.224000pt;}
.ws7a{word-spacing:3.320000pt;}
.ws6b{word-spacing:3.521600pt;}
.ws3d{word-spacing:3.559467pt;}
.ws93{word-spacing:3.718400pt;}
.ws6e{word-spacing:3.840000pt;}
.ws3e{word-spacing:3.960533pt;}
.ws80{word-spacing:4.040000pt;}
.ws7c{word-spacing:4.440000pt;}
.ws8a{word-spacing:4.520000pt;}
.ws13{word-spacing:4.662400pt;}
.ws2a{word-spacing:4.712000pt;}
.ws70{word-spacing:4.896000pt;}
.ws4b{word-spacing:5.059200pt;}
.ws73{word-spacing:5.456000pt;}
.ws85{word-spacing:5.480000pt;}
.ws6a{word-spacing:5.568000pt;}
.ws27{word-spacing:5.704000pt;}
.ws8e{word-spacing:5.840000pt;}
.ws9{word-spacing:6.249600pt;}
.ws87{word-spacing:7.040000pt;}
.ws7f{word-spacing:7.400000pt;}
.ws88{word-spacing:7.720000pt;}
.ws89{word-spacing:7.800000pt;}
.ws25{word-spacing:7.936000pt;}
.ws3b{word-spacing:8.071467pt;}
.ws91{word-spacing:9.273600pt;}
.ws7e{word-spacing:9.400000pt;}
.ws8b{word-spacing:11.800000pt;}
.ws86{word-spacing:11.960000pt;}
.ws84{word-spacing:14.640000pt;}
.ws8c{word-spacing:16.120000pt;}
.ws8f{word-spacing:20.280000pt;}
.ws7b{word-spacing:27.800000pt;}
.ws2b{word-spacing:56.522667pt;}
._f{margin-left:-17.241600pt;}
._a{margin-left:-13.439978pt;}
._8{margin-left:-11.610347pt;}
._9{margin-left:-6.398400pt;}
._5{margin-left:-5.425067pt;}
._4{margin-left:-3.660320pt;}
._3{margin-left:-2.435520pt;}
._2{margin-left:-0.992000pt;}
._0{width:1.680000pt;}
._1{width:3.164800pt;}
._c{width:34.794447pt;}
._e{width:36.511780pt;}
._d{width:38.266447pt;}
._6{width:56.373113pt;}
._b{width:608.457469pt;}
._7{width:609.483864pt;}
.fsf{font-size:21.765333pt;}
.fsd{font-size:27.984000pt;}
.fs7{font-size:28.916800pt;}
.fse{font-size:29.227733pt;}
.fs9{font-size:37.333333pt;}
.fsa{font-size:39.466667pt;}
.fs0{font-size:40.000000pt;}
.fs10{font-size:44.800000pt;}
.fs4{font-size:45.866667pt;}
.fsc{font-size:48.000000pt;}
.fsb{font-size:49.066667pt;}
.fs6{font-size:49.600000pt;}
.fs8{font-size:50.133333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs5{font-size:67.200000pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:58.009733pt;}
.y1e{bottom:92.598533pt;}
.ya4{bottom:105.131867pt;}
.y99{bottom:108.907200pt;}
.y44{bottom:108.911467pt;}
.y7a{bottom:108.911600pt;}
.y60{bottom:112.019467pt;}
.ya3{bottom:121.443200pt;}
.y79{bottom:121.444800pt;}
.y98{bottom:125.221867pt;}
.y1d{bottom:128.607067pt;}
.y97{bottom:137.756533pt;}
.y78{bottom:137.757867pt;}
.y43{bottom:146.584000pt;}
.y1c{bottom:146.604933pt;}
.y96{bottom:150.291200pt;}
.y77{bottom:154.070800pt;}
.y42{bottom:164.588800pt;}
.y1b{bottom:164.602800pt;}
.y95{bottom:166.604133pt;}
.y76{bottom:170.383867pt;}
.y41{bottom:182.593600pt;}
.y1a{bottom:182.600667pt;}
.y93{bottom:182.915867pt;}
.y94{bottom:182.917200pt;}
.y92{bottom:195.450533pt;}
.y40{bottom:200.598400pt;}
.y19{bottom:200.598533pt;}
.y91{bottom:207.983867pt;}
.y16{bottom:218.550533pt;}
.ya2{bottom:218.593600pt;}
.y3f{bottom:218.598400pt;}
.y18{bottom:218.598533pt;}
.y17{bottom:222.727600pt;}
.y8f{bottom:224.293867pt;}
.y90{bottom:224.296800pt;}
.y15{bottom:236.555333pt;}
.ya0{bottom:236.584000pt;}
.y74{bottom:236.598400pt;}
.ycc{bottom:236.604800pt;}
.y75{bottom:240.594400pt;}
.y8e{bottom:240.608533pt;}
.ya1{bottom:240.727600pt;}
.y8d{bottom:253.143200pt;}
.y14{bottom:254.560133pt;}
.y3e{bottom:254.569600pt;}
.y9f{bottom:254.588800pt;}
.y73{bottom:254.598400pt;}
.y5f{bottom:254.600533pt;}
.ycb{bottom:254.603200pt;}
.y8c{bottom:265.676533pt;}
.y13{bottom:272.564933pt;}
.y3d{bottom:272.574400pt;}
.y9e{bottom:272.593600pt;}
.y72{bottom:272.598400pt;}
.yca{bottom:272.601600pt;}
.y5e{bottom:272.613333pt;}
.y12{bottom:290.569733pt;}
.y3c{bottom:290.579200pt;}
.y9d{bottom:290.598400pt;}
.yc9{bottom:290.600000pt;}
.y5d{bottom:290.611200pt;}
.y11{bottom:308.574533pt;}
.y3b{bottom:308.584000pt;}
.y71{bottom:308.593600pt;}
.yc8{bottom:308.598400pt;}
.y5c{bottom:308.609067pt;}
.y10{bottom:326.579333pt;}
.y3a{bottom:326.588800pt;}
.y70{bottom:326.598400pt;}
.y5b{bottom:326.606933pt;}
.y8b{bottom:330.594400pt;}
.y6f{bottom:330.727600pt;}
.yf{bottom:344.584133pt;}
.y39{bottom:344.593600pt;}
.y8a{bottom:344.598400pt;}
.y5a{bottom:344.604800pt;}
.y36{bottom:362.584000pt;}
.ye{bottom:362.588933pt;}
.y6e{bottom:362.593600pt;}
.y38{bottom:362.598400pt;}
.y59{bottom:362.602667pt;}
.y37{bottom:366.727600pt;}
.y35{bottom:380.588800pt;}
.yd{bottom:380.593733pt;}
.y6d{bottom:380.598400pt;}
.y58{bottom:380.600533pt;}
.y34{bottom:398.593600pt;}
.y57{bottom:398.598400pt;}
.yc{bottom:398.598533pt;}
.y9c{bottom:402.594400pt;}
.y56{bottom:416.574400pt;}
.y31{bottom:416.579200pt;}
.y33{bottom:416.598400pt;}
.y6c{bottom:420.594400pt;}
.y32{bottom:420.727600pt;}
.y55{bottom:434.579200pt;}
.y30{bottom:434.584000pt;}
.y6b{bottom:434.598400pt;}
.yb{bottom:434.598533pt;}
.y54{bottom:452.584000pt;}
.y2f{bottom:452.588800pt;}
.y6a{bottom:452.598400pt;}
.y53{bottom:470.588800pt;}
.y2e{bottom:470.593600pt;}
.y69{bottom:470.598400pt;}
.y89{bottom:470.602667pt;}
.y52{bottom:488.593600pt;}
.y2d{bottom:488.598400pt;}
.y88{bottom:488.600533pt;}
.ya{bottom:506.587867pt;}
.y2c{bottom:506.598400pt;}
.y87{bottom:506.602667pt;}
.y68{bottom:524.584000pt;}
.y9{bottom:524.590533pt;}
.y86{bottom:524.600533pt;}
.yb6{bottom:528.744533pt;}
.yc7{bottom:537.574533pt;}
.yb5{bottom:541.414533pt;}
.y67{bottom:542.588800pt;}
.y8{bottom:542.593200pt;}
.y2b{bottom:542.598400pt;}
.y51{bottom:546.594400pt;}
.yc6{bottom:550.244533pt;}
.yb4{bottom:554.084533pt;}
.y85{bottom:560.588800pt;}
.y66{bottom:560.593600pt;}
.y7{bottom:560.595867pt;}
.y50{bottom:560.598400pt;}
.yc5{bottom:566.694533pt;}
.yb3{bottom:566.754533pt;}
.y84{bottom:578.593600pt;}
.y4f{bottom:578.598400pt;}
.y6{bottom:578.598533pt;}
.yc4{bottom:579.364533pt;}
.yb2{bottom:583.204533pt;}
.yc3{bottom:592.034533pt;}
.yb1{bottom:595.874533pt;}
.y82{bottom:596.598400pt;}
.y83{bottom:600.727600pt;}
.yc2{bottom:608.484533pt;}
.yb0{bottom:612.324533pt;}
.y2a{bottom:614.560000pt;}
.y4e{bottom:614.574400pt;}
.y64{bottom:614.598400pt;}
.y5{bottom:614.598533pt;}
.y65{bottom:618.594400pt;}
.yc1{bottom:621.154533pt;}
.yaf{bottom:624.994533pt;}
.y29{bottom:632.564800pt;}
.y4d{bottom:632.579200pt;}
.y63{bottom:632.598400pt;}
.y81{bottom:636.594400pt;}
.yc0{bottom:637.604533pt;}
.yae{bottom:637.664533pt;}
.ybf{bottom:650.274533pt;}
.yad{bottom:650.334533pt;}
.y28{bottom:650.569600pt;}
.y4c{bottom:650.584000pt;}
.y62{bottom:650.598400pt;}
.ybe{bottom:662.944533pt;}
.yac{bottom:663.004533pt;}
.y27{bottom:668.574400pt;}
.y4b{bottom:668.588800pt;}
.y80{bottom:668.598400pt;}
.ybd{bottom:675.614533pt;}
.yab{bottom:675.674533pt;}
.y26{bottom:686.579200pt;}
.y4a{bottom:686.593600pt;}
.ybc{bottom:688.284533pt;}
.yaa{bottom:688.344533pt;}
.y25{bottom:704.584000pt;}
.y4{bottom:704.595200pt;}
.y49{bottom:704.598400pt;}
.y7f{bottom:704.602667pt;}
.ybb{bottom:704.734533pt;}
.ya9{bottom:704.794533pt;}
.yba{bottom:717.404533pt;}
.ya8{bottom:717.464533pt;}
.y24{bottom:722.588800pt;}
.y48{bottom:722.598400pt;}
.y7e{bottom:722.600533pt;}
.ya7{bottom:730.134533pt;}
.yb9{bottom:733.854533pt;}
.y23{bottom:740.593600pt;}
.y9a{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y7d{bottom:740.600533pt;}
.y9b{bottom:744.594400pt;}
.yb8{bottom:746.524533pt;}
.ya6{bottom:746.584533pt;}
.y22{bottom:758.598400pt;}
.y7c{bottom:758.600533pt;}
.y47{bottom:758.602667pt;}
.yb7{bottom:759.194533pt;}
.ya5{bottom:759.254533pt;}
.y61{bottom:773.262400pt;}
.y7b{bottom:776.598400pt;}
.y46{bottom:776.600533pt;}
.y21{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y1{bottom:847.033333pt;}
.y20{bottom:847.069467pt;}
.y45{bottom:847.128533pt;}
.h14{height:17.564624pt;}
.h12{height:20.260416pt;}
.h9{height:20.935763pt;}
.h15{height:30.128000pt;}
.hc{height:31.060267pt;}
.hb{height:31.322667pt;}
.h1b{height:31.329067pt;}
.h19{height:31.334400pt;}
.h1a{height:31.339733pt;}
.h10{height:31.849600pt;}
.hd{height:32.280000pt;}
.h1c{height:32.435200pt;}
.he{height:33.112533pt;}
.h11{height:34.896000pt;}
.h2{height:36.040000pt;}
.h8{height:36.059200pt;}
.h1d{height:36.153600pt;}
.ha{height:36.446933pt;}
.h6{height:37.014400pt;}
.h13{height:37.795546pt;}
.h18{height:37.838212pt;}
.h16{height:37.846746pt;}
.h17{height:37.855279pt;}
.hf{height:38.615467pt;}
.h5{height:41.973333pt;}
.h1e{height:42.812800pt;}
.h7{height:48.652800pt;}
.h3{height:49.014400pt;}
.h4{height:73.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x26{left:79.370767pt;}
.x4{left:83.149600pt;}
.xd{left:84.934928pt;}
.x17{left:88.818800pt;}
.x18{left:104.816400pt;}
.x5{left:109.853600pt;}
.x10{left:183.249067pt;}
.x11{left:186.951333pt;}
.x1f{left:189.046400pt;}
.x19{left:204.357867pt;}
.x1a{left:211.762400pt;}
.x22{left:228.054133pt;}
.x23{left:235.458533pt;}
.x6{left:238.741600pt;}
.x7{left:242.567333pt;}
.xe{left:252.408000pt;}
.xf{left:256.110267pt;}
.x8{left:259.801467pt;}
.x9{left:263.627067pt;}
.x20{left:276.810000pt;}
.x21{left:284.214533pt;}
.xa{left:303.610667pt;}
.xb{left:307.312933pt;}
.x28{left:319.368167pt;}
.x27{left:330.707467pt;}
.x12{left:357.739067pt;}
.x13{left:361.564667pt;}
.x14{left:370.535200pt;}
.x15{left:374.360800pt;}
.x16{left:378.896000pt;}
.x24{left:431.488667pt;}
.x1b{left:437.775333pt;}
.x25{left:438.844933pt;}
.x1d{left:443.105733pt;}
.x1c{left:445.426533pt;}
.x1e{left:450.510133pt;}
.xc{left:537.160000pt;}
.x2{left:538.254667pt;}
.x3{left:542.002133pt;}
}




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