
    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_ad281cddb741c564558ae97c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_db0b56aabbf5c44fbfb7e61a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_dfcdeb97c8f14360a1299640.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_67e64cf3818016f797e2f793.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_e7bff9bd335e4ca9a3119154.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160000;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_7ac8c2dcf6d3e7496867078c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_7ac8c2dcf6d3e7496867078c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_97f130f42547105ff31bb9b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.164000;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_859156612c951e22ea1b04ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.184000;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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls14{letter-spacing:-2.106000px;}
.ls15{letter-spacing:-1.296000px;}
.ls28{letter-spacing:-1.188000px;}
.ls21{letter-spacing:-0.840000px;}
.ls25{letter-spacing:-0.780000px;}
.ls23{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.660000px;}
.ls20{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.594000px;}
.ls22{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.510000px;}
.ls1f{letter-spacing:-0.420000px;}
.ls2d{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.139920px;}
.ls18{letter-spacing:-0.120000px;}
.ls1d{letter-spacing:-0.060000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.030000px;}
.ls13{letter-spacing:0.060000px;}
.ls27{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.216000px;}
.lse{letter-spacing:0.222000px;}
.ls12{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.251100px;}
.ls10{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.333000px;}
.ls8{letter-spacing:0.334800px;}
.lsd{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.362700px;}
.ls29{letter-spacing:0.378000px;}
.ls5{letter-spacing:0.420000px;}
.ls2b{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.660000px;}
.ls2f{letter-spacing:0.663000px;}
.ls11{letter-spacing:0.690000px;}
.ls30{letter-spacing:0.702000px;}
.ls2a{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.810000px;}
.ls9{letter-spacing:1.200000px;}
.ls2e{letter-spacing:1.224000px;}
.ls1a{letter-spacing:1.296000px;}
.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;}
}
.ws39{word-spacing:-14.094000px;}
.ws81{word-spacing:-13.500000px;}
.ws72{word-spacing:-13.230000px;}
.ws79{word-spacing:-12.495000px;}
.ws58{word-spacing:-11.610000px;}
.ws0{word-spacing:-11.280000px;}
.ws65{word-spacing:-11.100000px;}
.ws7a{word-spacing:-10.965000px;}
.ws83{word-spacing:-10.659000px;}
.ws49{word-spacing:-10.560000px;}
.ws82{word-spacing:-10.200000px;}
.ws1{word-spacing:-8.901000px;}
.ws3a{word-spacing:-7.310820px;}
.ws7d{word-spacing:-2.460000px;}
.ws34{word-spacing:-2.040000px;}
.wsb{word-spacing:-1.980000px;}
.ws17{word-spacing:-1.920000px;}
.ws10{word-spacing:-1.860000px;}
.wsd{word-spacing:-1.800000px;}
.ws3c{word-spacing:-1.740000px;}
.ws2f{word-spacing:-1.680000px;}
.ws55{word-spacing:-1.620000px;}
.wse{word-spacing:-1.560000px;}
.ws52{word-spacing:-1.500000px;}
.ws62{word-spacing:-1.380000px;}
.ws2c{word-spacing:-1.260000px;}
.ws3{word-spacing:-1.200000px;}
.ws5f{word-spacing:-1.080000px;}
.ws5c{word-spacing:-1.020000px;}
.ws15{word-spacing:-0.960000px;}
.ws4c{word-spacing:-0.900000px;}
.ws16{word-spacing:-0.840000px;}
.ws5b{word-spacing:-0.780000px;}
.ws69{word-spacing:-0.720000px;}
.ws80{word-spacing:-0.714000px;}
.ws37{word-spacing:-0.660000px;}
.ws11{word-spacing:-0.600000px;}
.ws19{word-spacing:-0.540000px;}
.ws67{word-spacing:-0.480000px;}
.ws40{word-spacing:-0.420000px;}
.ws85{word-spacing:-0.408000px;}
.ws4f{word-spacing:-0.360000px;}
.ws7f{word-spacing:-0.357000px;}
.ws2{word-spacing:-0.355200px;}
.ws70{word-spacing:-0.300000px;}
.ws7{word-spacing:-0.240000px;}
.ws22{word-spacing:-0.223200px;}
.ws23{word-spacing:-0.222000px;}
.ws7e{word-spacing:-0.204000px;}
.ws18{word-spacing:-0.120000px;}
.ws14{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws30{word-spacing:0.060000px;}
.ws51{word-spacing:0.120000px;}
.wsc{word-spacing:0.139920px;}
.ws9{word-spacing:0.180000px;}
.ws63{word-spacing:0.240000px;}
.ws41{word-spacing:0.300000px;}
.ws5e{word-spacing:0.360000px;}
.ws2b{word-spacing:0.420000px;}
.ws31{word-spacing:0.480000px;}
.ws86{word-spacing:0.510000px;}
.ws1a{word-spacing:0.540000px;}
.ws48{word-spacing:0.558000px;}
.ws77{word-spacing:0.600000px;}
.ws44{word-spacing:0.660000px;}
.ws57{word-spacing:0.669600px;}
.ws38{word-spacing:0.720000px;}
.ws6e{word-spacing:0.780000px;}
.ws76{word-spacing:0.840000px;}
.ws6{word-spacing:0.900000px;}
.ws6a{word-spacing:0.960000px;}
.ws5{word-spacing:1.020000px;}
.wsf{word-spacing:1.080000px;}
.ws3d{word-spacing:1.200000px;}
.ws2a{word-spacing:1.260000px;}
.wsa{word-spacing:1.320000px;}
.ws32{word-spacing:1.440000px;}
.ws5a{word-spacing:1.500000px;}
.ws74{word-spacing:1.560000px;}
.ws1b{word-spacing:1.620000px;}
.ws5d{word-spacing:1.680000px;}
.ws29{word-spacing:1.800000px;}
.ws8{word-spacing:1.860000px;}
.ws20{word-spacing:1.897200px;}
.ws1e{word-spacing:1.920000px;}
.ws2e{word-spacing:1.980000px;}
.ws75{word-spacing:2.040000px;}
.ws36{word-spacing:2.100000px;}
.ws24{word-spacing:2.106000px;}
.ws6c{word-spacing:2.160000px;}
.ws53{word-spacing:2.220000px;}
.ws4b{word-spacing:2.280000px;}
.ws26{word-spacing:2.400000px;}
.ws21{word-spacing:2.511000px;}
.ws1c{word-spacing:2.520000px;}
.ws4d{word-spacing:2.580000px;}
.ws27{word-spacing:2.640000px;}
.ws35{word-spacing:2.700000px;}
.ws61{word-spacing:2.760000px;}
.ws47{word-spacing:2.790000px;}
.ws6f{word-spacing:2.820000px;}
.ws68{word-spacing:2.880000px;}
.ws71{word-spacing:2.940000px;}
.ws60{word-spacing:3.000000px;}
.ws64{word-spacing:3.060000px;}
.ws1d{word-spacing:3.120000px;}
.ws43{word-spacing:3.180000px;}
.ws45{word-spacing:3.240000px;}
.ws54{word-spacing:3.300000px;}
.ws78{word-spacing:3.360000px;}
.ws3f{word-spacing:3.420000px;}
.ws42{word-spacing:3.480000px;}
.ws33{word-spacing:3.540000px;}
.ws56{word-spacing:3.660000px;}
.ws4e{word-spacing:3.780000px;}
.ws3e{word-spacing:3.900000px;}
.ws1f{word-spacing:4.020000px;}
.ws7c{word-spacing:4.080000px;}
.ws50{word-spacing:4.140000px;}
.ws6b{word-spacing:4.200000px;}
.ws28{word-spacing:4.260000px;}
.ws12{word-spacing:4.380000px;}
.ws13{word-spacing:4.860000px;}
.ws46{word-spacing:5.040000px;}
.ws6d{word-spacing:5.220000px;}
.ws87{word-spacing:5.253000px;}
.ws2d{word-spacing:5.580000px;}
.ws3b{word-spacing:999.162000px;}
.ws84{word-spacing:999.756000px;}
.ws73{word-spacing:1000.026000px;}
.ws59{word-spacing:1001.646000px;}
.ws66{word-spacing:1667.790000px;}
.ws7b{word-spacing:1668.060000px;}
.ws4a{word-spacing:1669.734000px;}
.ws25{word-spacing:1671.138000px;}
._e{margin-left:-1000.943400px;}
._f{margin-left:-999.647400px;}
._c{margin-left:-998.501400px;}
._9{margin-left:-15.945600px;}
._a{margin-left:-7.674000px;}
._b{margin-left:-6.660000px;}
._5{margin-left:-5.220000px;}
._2{margin-left:-4.026000px;}
._4{margin-left:-2.160000px;}
._3{margin-left:-1.074000px;}
._0{width:1.146000px;}
._1{width:2.442000px;}
._6{width:4.170000px;}
._7{width:5.460000px;}
._d{width:48.629100px;}
._8{width:55.269300px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:22.200000px;}
.fs2{font-size:34.980000px;}
.fs3{font-size:41.400000px;}
.fs7{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:55.800000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:90.548700px;}
.y36{bottom:90.560850px;}
.y25{bottom:90.567150px;}
.y34{bottom:91.318050px;}
.y79{bottom:96.368550px;}
.y5a{bottom:96.394050px;}
.y39{bottom:107.804850px;}
.y35{bottom:107.817000px;}
.y24{bottom:107.817150px;}
.y33{bottom:109.768050px;}
.y78{bottom:113.619300px;}
.y59{bottom:113.644800px;}
.y38{bottom:125.061000px;}
.y23{bottom:125.067150px;}
.y32{bottom:128.218050px;}
.y77{bottom:130.870050px;}
.y58{bottom:130.895550px;}
.y37{bottom:142.317150px;}
.y31{bottom:146.668050px;}
.y76{bottom:148.120800px;}
.y57{bottom:148.146300px;}
.y22{bottom:165.118050px;}
.y75{bottom:165.371550px;}
.y56{bottom:165.397050px;}
.yc7{bottom:180.904050px;}
.y74{bottom:182.622300px;}
.y55{bottom:182.647800px;}
.y21{bottom:183.568050px;}
.yc6{bottom:198.154800px;}
.y73{bottom:199.873050px;}
.y54{bottom:199.898550px;}
.y20{bottom:202.018050px;}
.yc5{bottom:215.405550px;}
.y72{bottom:217.123800px;}
.y53{bottom:217.149300px;}
.y30{bottom:220.468050px;}
.y71{bottom:234.374550px;}
.y52{bottom:234.400050px;}
.y1f{bottom:238.918050px;}
.y70{bottom:251.625300px;}
.y51{bottom:251.650800px;}
.y2f{bottom:257.368050px;}
.y9f{bottom:267.183300px;}
.y6f{bottom:268.876050px;}
.y50{bottom:268.901550px;}
.y2e{bottom:275.818050px;}
.yc4{bottom:284.408550px;}
.y9e{bottom:284.434050px;}
.y6e{bottom:286.126800px;}
.y4f{bottom:286.152300px;}
.y1e{bottom:294.268050px;}
.yc3{bottom:301.659300px;}
.y9d{bottom:301.684800px;}
.y6d{bottom:303.377550px;}
.y4e{bottom:303.403050px;}
.y1d{bottom:312.718050px;}
.yc2{bottom:318.910050px;}
.y9c{bottom:318.935550px;}
.y6c{bottom:320.628300px;}
.y4d{bottom:320.653800px;}
.y1c{bottom:331.168050px;}
.yc1{bottom:336.160800px;}
.y9b{bottom:336.186300px;}
.y6b{bottom:337.879050px;}
.y4c{bottom:337.904550px;}
.y1b{bottom:349.618050px;}
.yc0{bottom:353.411550px;}
.y9a{bottom:353.437050px;}
.y6a{bottom:355.129800px;}
.y4b{bottom:355.155300px;}
.y1a{bottom:368.068050px;}
.ybf{bottom:370.662300px;}
.y99{bottom:370.687800px;}
.y69{bottom:372.380550px;}
.y4a{bottom:372.406050px;}
.y19{bottom:386.518050px;}
.ybe{bottom:387.913050px;}
.y98{bottom:387.938550px;}
.y68{bottom:389.631300px;}
.y49{bottom:389.656800px;}
.y18{bottom:404.968050px;}
.ybd{bottom:405.163800px;}
.y97{bottom:405.189300px;}
.y67{bottom:406.882050px;}
.y48{bottom:406.907550px;}
.ybc{bottom:422.414550px;}
.y96{bottom:422.440050px;}
.y17{bottom:423.418050px;}
.y66{bottom:424.132800px;}
.y47{bottom:424.158300px;}
.ybb{bottom:439.665300px;}
.y95{bottom:439.690800px;}
.y65{bottom:441.383550px;}
.y46{bottom:441.409050px;}
.y16{bottom:441.868050px;}
.yba{bottom:456.916050px;}
.y94{bottom:456.941550px;}
.y64{bottom:458.634300px;}
.y45{bottom:458.659800px;}
.y15{bottom:460.318050px;}
.yb9{bottom:474.166800px;}
.y93{bottom:474.192300px;}
.y63{bottom:475.885050px;}
.y44{bottom:475.910550px;}
.y14{bottom:478.768050px;}
.yb8{bottom:491.417550px;}
.y92{bottom:491.443050px;}
.y62{bottom:493.135800px;}
.y43{bottom:493.161300px;}
.y13{bottom:497.218050px;}
.yb7{bottom:508.668300px;}
.y91{bottom:508.693800px;}
.y61{bottom:510.386550px;}
.y42{bottom:510.412050px;}
.y12{bottom:515.668050px;}
.yb6{bottom:525.919050px;}
.y90{bottom:525.944550px;}
.y60{bottom:527.637300px;}
.y41{bottom:527.662800px;}
.y11{bottom:534.118050px;}
.yb5{bottom:543.169800px;}
.y8f{bottom:543.195300px;}
.y5f{bottom:544.888050px;}
.y40{bottom:544.913550px;}
.y10{bottom:552.568050px;}
.yb4{bottom:560.420550px;}
.y8e{bottom:560.446050px;}
.y5e{bottom:562.138800px;}
.y3f{bottom:562.164300px;}
.yf{bottom:571.018050px;}
.yb3{bottom:577.671300px;}
.y8d{bottom:577.696800px;}
.y5d{bottom:579.389550px;}
.y3e{bottom:579.415050px;}
.ye{bottom:589.468050px;}
.yb2{bottom:594.922050px;}
.y8c{bottom:594.947550px;}
.y5c{bottom:596.640300px;}
.y3d{bottom:596.665800px;}
.yd{bottom:607.918050px;}
.yb1{bottom:612.172800px;}
.y8b{bottom:612.198300px;}
.y5b{bottom:613.891050px;}
.y3c{bottom:613.916550px;}
.yc{bottom:626.368050px;}
.yb0{bottom:629.423550px;}
.y8a{bottom:629.449050px;}
.yb{bottom:644.818050px;}
.yaf{bottom:646.674300px;}
.y89{bottom:646.699800px;}
.y3b{bottom:648.418050px;}
.ya{bottom:663.268050px;}
.yae{bottom:663.925050px;}
.y88{bottom:663.950550px;}
.yad{bottom:681.175800px;}
.y87{bottom:681.201300px;}
.y9{bottom:681.718050px;}
.yac{bottom:698.426550px;}
.y86{bottom:698.452050px;}
.y8{bottom:700.168050px;}
.yab{bottom:715.677300px;}
.y85{bottom:715.702800px;}
.y7{bottom:718.618050px;}
.yaa{bottom:732.928050px;}
.y84{bottom:732.953550px;}
.y6{bottom:737.068050px;}
.ya9{bottom:750.178800px;}
.y83{bottom:750.204300px;}
.y2d{bottom:755.518050px;}
.ya8{bottom:767.429550px;}
.y82{bottom:767.455050px;}
.y5{bottom:773.968050px;}
.ya7{bottom:784.680300px;}
.y81{bottom:784.705800px;}
.y4{bottom:792.418050px;}
.ya6{bottom:801.931050px;}
.y80{bottom:801.956550px;}
.y2c{bottom:810.868050px;}
.ya5{bottom:819.181800px;}
.y7f{bottom:819.207300px;}
.y2b{bottom:829.318050px;}
.ya4{bottom:836.432550px;}
.y7e{bottom:836.458050px;}
.y3{bottom:845.218200px;}
.y2a{bottom:847.768050px;}
.ya3{bottom:853.683300px;}
.y7d{bottom:853.708800px;}
.y27{bottom:857.391000px;}
.y26{bottom:864.889050px;}
.y29{bottom:866.218050px;}
.ya2{bottom:870.934050px;}
.y7c{bottom:870.959550px;}
.y2{bottom:884.668050px;}
.ya1{bottom:888.184800px;}
.y7b{bottom:888.210300px;}
.y1{bottom:903.118050px;}
.ya0{bottom:905.435550px;}
.y7a{bottom:905.461050px;}
.y28{bottom:955.942350px;}
.h6{height:15.295800px;}
.hc{height:45.543000px;}
.hb{height:45.696000px;}
.he{height:45.900000px;}
.hd{height:46.614000px;}
.ha{height:48.195000px;}
.h5{height:49.996800px;}
.h9{height:50.021400px;}
.h7{height:50.868000px;}
.h4{height:54.000000px;}
.h8{height:56.520000px;}
.h2{height:56.700000px;}
.h3{height:67.824000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x4{left:25.966350px;}
.x3{left:28.835700px;}
.x1{left:72.283500px;}
.x5{left:80.787450px;}
.xb{left:85.039350px;}
.x2{left:93.528750px;}
.x6{left:102.034950px;}
.xd{left:353.414100px;}
.x9{left:361.912050px;}
.xc{left:366.164100px;}
.xa{left:374.662050px;}
.x8{left:651.643500px;}
.x7{left:654.512850px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls14{letter-spacing:-1.872000pt;}
.ls15{letter-spacing:-1.152000pt;}
.ls28{letter-spacing:-1.056000pt;}
.ls21{letter-spacing:-0.746667pt;}
.ls25{letter-spacing:-0.693333pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.586667pt;}
.ls20{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.528000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.453333pt;}
.ls1f{letter-spacing:-0.373333pt;}
.ls2d{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.124373pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls1d{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.026667pt;}
.ls13{letter-spacing:0.053333pt;}
.ls27{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.197333pt;}
.ls12{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.223200pt;}
.ls10{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.296000pt;}
.ls8{letter-spacing:0.297600pt;}
.lsd{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.322400pt;}
.ls29{letter-spacing:0.336000pt;}
.ls5{letter-spacing:0.373333pt;}
.ls2b{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls2f{letter-spacing:0.589333pt;}
.ls11{letter-spacing:0.613333pt;}
.ls30{letter-spacing:0.624000pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.720000pt;}
.ls9{letter-spacing:1.066667pt;}
.ls2e{letter-spacing:1.088000pt;}
.ls1a{letter-spacing:1.152000pt;}
.ws39{word-spacing:-12.528000pt;}
.ws81{word-spacing:-12.000000pt;}
.ws72{word-spacing:-11.760000pt;}
.ws79{word-spacing:-11.106667pt;}
.ws58{word-spacing:-10.320000pt;}
.ws0{word-spacing:-10.026667pt;}
.ws65{word-spacing:-9.866667pt;}
.ws7a{word-spacing:-9.746667pt;}
.ws83{word-spacing:-9.474667pt;}
.ws49{word-spacing:-9.386667pt;}
.ws82{word-spacing:-9.066667pt;}
.ws1{word-spacing:-7.912000pt;}
.ws3a{word-spacing:-6.498507pt;}
.ws7d{word-spacing:-2.186667pt;}
.ws34{word-spacing:-1.813333pt;}
.wsb{word-spacing:-1.760000pt;}
.ws17{word-spacing:-1.706667pt;}
.ws10{word-spacing:-1.653333pt;}
.wsd{word-spacing:-1.600000pt;}
.ws3c{word-spacing:-1.546667pt;}
.ws2f{word-spacing:-1.493333pt;}
.ws55{word-spacing:-1.440000pt;}
.wse{word-spacing:-1.386667pt;}
.ws52{word-spacing:-1.333333pt;}
.ws62{word-spacing:-1.226667pt;}
.ws2c{word-spacing:-1.120000pt;}
.ws3{word-spacing:-1.066667pt;}
.ws5f{word-spacing:-0.960000pt;}
.ws5c{word-spacing:-0.906667pt;}
.ws15{word-spacing:-0.853333pt;}
.ws4c{word-spacing:-0.800000pt;}
.ws16{word-spacing:-0.746667pt;}
.ws5b{word-spacing:-0.693333pt;}
.ws69{word-spacing:-0.640000pt;}
.ws80{word-spacing:-0.634667pt;}
.ws37{word-spacing:-0.586667pt;}
.ws11{word-spacing:-0.533333pt;}
.ws19{word-spacing:-0.480000pt;}
.ws67{word-spacing:-0.426667pt;}
.ws40{word-spacing:-0.373333pt;}
.ws85{word-spacing:-0.362667pt;}
.ws4f{word-spacing:-0.320000pt;}
.ws7f{word-spacing:-0.317333pt;}
.ws2{word-spacing:-0.315733pt;}
.ws70{word-spacing:-0.266667pt;}
.ws7{word-spacing:-0.213333pt;}
.ws22{word-spacing:-0.198400pt;}
.ws23{word-spacing:-0.197333pt;}
.ws7e{word-spacing:-0.181333pt;}
.ws18{word-spacing:-0.106667pt;}
.ws14{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws30{word-spacing:0.053333pt;}
.ws51{word-spacing:0.106667pt;}
.wsc{word-spacing:0.124373pt;}
.ws9{word-spacing:0.160000pt;}
.ws63{word-spacing:0.213333pt;}
.ws41{word-spacing:0.266667pt;}
.ws5e{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.373333pt;}
.ws31{word-spacing:0.426667pt;}
.ws86{word-spacing:0.453333pt;}
.ws1a{word-spacing:0.480000pt;}
.ws48{word-spacing:0.496000pt;}
.ws77{word-spacing:0.533333pt;}
.ws44{word-spacing:0.586667pt;}
.ws57{word-spacing:0.595200pt;}
.ws38{word-spacing:0.640000pt;}
.ws6e{word-spacing:0.693333pt;}
.ws76{word-spacing:0.746667pt;}
.ws6{word-spacing:0.800000pt;}
.ws6a{word-spacing:0.853333pt;}
.ws5{word-spacing:0.906667pt;}
.wsf{word-spacing:0.960000pt;}
.ws3d{word-spacing:1.066667pt;}
.ws2a{word-spacing:1.120000pt;}
.wsa{word-spacing:1.173333pt;}
.ws32{word-spacing:1.280000pt;}
.ws5a{word-spacing:1.333333pt;}
.ws74{word-spacing:1.386667pt;}
.ws1b{word-spacing:1.440000pt;}
.ws5d{word-spacing:1.493333pt;}
.ws29{word-spacing:1.600000pt;}
.ws8{word-spacing:1.653333pt;}
.ws20{word-spacing:1.686400pt;}
.ws1e{word-spacing:1.706667pt;}
.ws2e{word-spacing:1.760000pt;}
.ws75{word-spacing:1.813333pt;}
.ws36{word-spacing:1.866667pt;}
.ws24{word-spacing:1.872000pt;}
.ws6c{word-spacing:1.920000pt;}
.ws53{word-spacing:1.973333pt;}
.ws4b{word-spacing:2.026667pt;}
.ws26{word-spacing:2.133333pt;}
.ws21{word-spacing:2.232000pt;}
.ws1c{word-spacing:2.240000pt;}
.ws4d{word-spacing:2.293333pt;}
.ws27{word-spacing:2.346667pt;}
.ws35{word-spacing:2.400000pt;}
.ws61{word-spacing:2.453333pt;}
.ws47{word-spacing:2.480000pt;}
.ws6f{word-spacing:2.506667pt;}
.ws68{word-spacing:2.560000pt;}
.ws71{word-spacing:2.613333pt;}
.ws60{word-spacing:2.666667pt;}
.ws64{word-spacing:2.720000pt;}
.ws1d{word-spacing:2.773333pt;}
.ws43{word-spacing:2.826667pt;}
.ws45{word-spacing:2.880000pt;}
.ws54{word-spacing:2.933333pt;}
.ws78{word-spacing:2.986667pt;}
.ws3f{word-spacing:3.040000pt;}
.ws42{word-spacing:3.093333pt;}
.ws33{word-spacing:3.146667pt;}
.ws56{word-spacing:3.253333pt;}
.ws4e{word-spacing:3.360000pt;}
.ws3e{word-spacing:3.466667pt;}
.ws1f{word-spacing:3.573333pt;}
.ws7c{word-spacing:3.626667pt;}
.ws50{word-spacing:3.680000pt;}
.ws6b{word-spacing:3.733333pt;}
.ws28{word-spacing:3.786667pt;}
.ws12{word-spacing:3.893333pt;}
.ws13{word-spacing:4.320000pt;}
.ws46{word-spacing:4.480000pt;}
.ws6d{word-spacing:4.640000pt;}
.ws87{word-spacing:4.669333pt;}
.ws2d{word-spacing:4.960000pt;}
.ws3b{word-spacing:888.144000pt;}
.ws84{word-spacing:888.672000pt;}
.ws73{word-spacing:888.912000pt;}
.ws59{word-spacing:890.352000pt;}
.ws66{word-spacing:1482.480000pt;}
.ws7b{word-spacing:1482.720000pt;}
.ws4a{word-spacing:1484.208000pt;}
.ws25{word-spacing:1485.456000pt;}
._e{margin-left:-889.727467pt;}
._f{margin-left:-888.575467pt;}
._c{margin-left:-887.556800pt;}
._9{margin-left:-14.173867pt;}
._a{margin-left:-6.821333pt;}
._b{margin-left:-5.920000pt;}
._5{margin-left:-4.640000pt;}
._2{margin-left:-3.578667pt;}
._4{margin-left:-1.920000pt;}
._3{margin-left:-0.954667pt;}
._0{width:1.018667pt;}
._1{width:2.170667pt;}
._6{width:3.706667pt;}
._7{width:4.853333pt;}
._d{width:43.225867pt;}
._8{width:49.128267pt;}
.fs5{font-size:19.733333pt;}
.fs2{font-size:31.093333pt;}
.fs3{font-size:36.800000pt;}
.fs7{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:49.600000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:80.487733pt;}
.y36{bottom:80.498533pt;}
.y25{bottom:80.504133pt;}
.y34{bottom:81.171600pt;}
.y79{bottom:85.660933pt;}
.y5a{bottom:85.683600pt;}
.y39{bottom:95.826533pt;}
.y35{bottom:95.837333pt;}
.y24{bottom:95.837467pt;}
.y33{bottom:97.571600pt;}
.y78{bottom:100.994933pt;}
.y59{bottom:101.017600pt;}
.y38{bottom:111.165333pt;}
.y23{bottom:111.170800pt;}
.y32{bottom:113.971600pt;}
.y77{bottom:116.328933pt;}
.y58{bottom:116.351600pt;}
.y37{bottom:126.504133pt;}
.y31{bottom:130.371600pt;}
.y76{bottom:131.662933pt;}
.y57{bottom:131.685600pt;}
.y22{bottom:146.771600pt;}
.y75{bottom:146.996933pt;}
.y56{bottom:147.019600pt;}
.yc7{bottom:160.803600pt;}
.y74{bottom:162.330933pt;}
.y55{bottom:162.353600pt;}
.y21{bottom:163.171600pt;}
.yc6{bottom:176.137600pt;}
.y73{bottom:177.664933pt;}
.y54{bottom:177.687600pt;}
.y20{bottom:179.571600pt;}
.yc5{bottom:191.471600pt;}
.y72{bottom:192.998933pt;}
.y53{bottom:193.021600pt;}
.y30{bottom:195.971600pt;}
.y71{bottom:208.332933pt;}
.y52{bottom:208.355600pt;}
.y1f{bottom:212.371600pt;}
.y70{bottom:223.666933pt;}
.y51{bottom:223.689600pt;}
.y2f{bottom:228.771600pt;}
.y9f{bottom:237.496267pt;}
.y6f{bottom:239.000933pt;}
.y50{bottom:239.023600pt;}
.y2e{bottom:245.171600pt;}
.yc4{bottom:252.807600pt;}
.y9e{bottom:252.830267pt;}
.y6e{bottom:254.334933pt;}
.y4f{bottom:254.357600pt;}
.y1e{bottom:261.571600pt;}
.yc3{bottom:268.141600pt;}
.y9d{bottom:268.164267pt;}
.y6d{bottom:269.668933pt;}
.y4e{bottom:269.691600pt;}
.y1d{bottom:277.971600pt;}
.yc2{bottom:283.475600pt;}
.y9c{bottom:283.498267pt;}
.y6c{bottom:285.002933pt;}
.y4d{bottom:285.025600pt;}
.y1c{bottom:294.371600pt;}
.yc1{bottom:298.809600pt;}
.y9b{bottom:298.832267pt;}
.y6b{bottom:300.336933pt;}
.y4c{bottom:300.359600pt;}
.y1b{bottom:310.771600pt;}
.yc0{bottom:314.143600pt;}
.y9a{bottom:314.166267pt;}
.y6a{bottom:315.670933pt;}
.y4b{bottom:315.693600pt;}
.y1a{bottom:327.171600pt;}
.ybf{bottom:329.477600pt;}
.y99{bottom:329.500267pt;}
.y69{bottom:331.004933pt;}
.y4a{bottom:331.027600pt;}
.y19{bottom:343.571600pt;}
.ybe{bottom:344.811600pt;}
.y98{bottom:344.834267pt;}
.y68{bottom:346.338933pt;}
.y49{bottom:346.361600pt;}
.y18{bottom:359.971600pt;}
.ybd{bottom:360.145600pt;}
.y97{bottom:360.168267pt;}
.y67{bottom:361.672933pt;}
.y48{bottom:361.695600pt;}
.ybc{bottom:375.479600pt;}
.y96{bottom:375.502267pt;}
.y17{bottom:376.371600pt;}
.y66{bottom:377.006933pt;}
.y47{bottom:377.029600pt;}
.ybb{bottom:390.813600pt;}
.y95{bottom:390.836267pt;}
.y65{bottom:392.340933pt;}
.y46{bottom:392.363600pt;}
.y16{bottom:392.771600pt;}
.yba{bottom:406.147600pt;}
.y94{bottom:406.170267pt;}
.y64{bottom:407.674933pt;}
.y45{bottom:407.697600pt;}
.y15{bottom:409.171600pt;}
.yb9{bottom:421.481600pt;}
.y93{bottom:421.504267pt;}
.y63{bottom:423.008933pt;}
.y44{bottom:423.031600pt;}
.y14{bottom:425.571600pt;}
.yb8{bottom:436.815600pt;}
.y92{bottom:436.838267pt;}
.y62{bottom:438.342933pt;}
.y43{bottom:438.365600pt;}
.y13{bottom:441.971600pt;}
.yb7{bottom:452.149600pt;}
.y91{bottom:452.172267pt;}
.y61{bottom:453.676933pt;}
.y42{bottom:453.699600pt;}
.y12{bottom:458.371600pt;}
.yb6{bottom:467.483600pt;}
.y90{bottom:467.506267pt;}
.y60{bottom:469.010933pt;}
.y41{bottom:469.033600pt;}
.y11{bottom:474.771600pt;}
.yb5{bottom:482.817600pt;}
.y8f{bottom:482.840267pt;}
.y5f{bottom:484.344933pt;}
.y40{bottom:484.367600pt;}
.y10{bottom:491.171600pt;}
.yb4{bottom:498.151600pt;}
.y8e{bottom:498.174267pt;}
.y5e{bottom:499.678933pt;}
.y3f{bottom:499.701600pt;}
.yf{bottom:507.571600pt;}
.yb3{bottom:513.485600pt;}
.y8d{bottom:513.508267pt;}
.y5d{bottom:515.012933pt;}
.y3e{bottom:515.035600pt;}
.ye{bottom:523.971600pt;}
.yb2{bottom:528.819600pt;}
.y8c{bottom:528.842267pt;}
.y5c{bottom:530.346933pt;}
.y3d{bottom:530.369600pt;}
.yd{bottom:540.371600pt;}
.yb1{bottom:544.153600pt;}
.y8b{bottom:544.176267pt;}
.y5b{bottom:545.680933pt;}
.y3c{bottom:545.703600pt;}
.yc{bottom:556.771600pt;}
.yb0{bottom:559.487600pt;}
.y8a{bottom:559.510267pt;}
.yb{bottom:573.171600pt;}
.yaf{bottom:574.821600pt;}
.y89{bottom:574.844267pt;}
.y3b{bottom:576.371600pt;}
.ya{bottom:589.571600pt;}
.yae{bottom:590.155600pt;}
.y88{bottom:590.178267pt;}
.yad{bottom:605.489600pt;}
.y87{bottom:605.512267pt;}
.y9{bottom:605.971600pt;}
.yac{bottom:620.823600pt;}
.y86{bottom:620.846267pt;}
.y8{bottom:622.371600pt;}
.yab{bottom:636.157600pt;}
.y85{bottom:636.180267pt;}
.y7{bottom:638.771600pt;}
.yaa{bottom:651.491600pt;}
.y84{bottom:651.514267pt;}
.y6{bottom:655.171600pt;}
.ya9{bottom:666.825600pt;}
.y83{bottom:666.848267pt;}
.y2d{bottom:671.571600pt;}
.ya8{bottom:682.159600pt;}
.y82{bottom:682.182267pt;}
.y5{bottom:687.971600pt;}
.ya7{bottom:697.493600pt;}
.y81{bottom:697.516267pt;}
.y4{bottom:704.371600pt;}
.ya6{bottom:712.827600pt;}
.y80{bottom:712.850267pt;}
.y2c{bottom:720.771600pt;}
.ya5{bottom:728.161600pt;}
.y7f{bottom:728.184267pt;}
.y2b{bottom:737.171600pt;}
.ya4{bottom:743.495600pt;}
.y7e{bottom:743.518267pt;}
.y3{bottom:751.305067pt;}
.y2a{bottom:753.571600pt;}
.ya3{bottom:758.829600pt;}
.y7d{bottom:758.852267pt;}
.y27{bottom:762.125333pt;}
.y26{bottom:768.790267pt;}
.y29{bottom:769.971600pt;}
.ya2{bottom:774.163600pt;}
.y7c{bottom:774.186267pt;}
.y2{bottom:786.371600pt;}
.ya1{bottom:789.497600pt;}
.y7b{bottom:789.520267pt;}
.y1{bottom:802.771600pt;}
.ya0{bottom:804.831600pt;}
.y7a{bottom:804.854267pt;}
.y28{bottom:849.726533pt;}
.h6{height:13.596267pt;}
.hc{height:40.482667pt;}
.hb{height:40.618667pt;}
.he{height:40.800000pt;}
.hd{height:41.434667pt;}
.ha{height:42.840000pt;}
.h5{height:44.441600pt;}
.h9{height:44.463467pt;}
.h7{height:45.216000pt;}
.h4{height:48.000000pt;}
.h8{height:50.240000pt;}
.h2{height:50.400000pt;}
.h3{height:60.288000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x4{left:23.081200pt;}
.x3{left:25.631733pt;}
.x1{left:64.252000pt;}
.x5{left:71.811067pt;}
.xb{left:75.590533pt;}
.x2{left:83.136667pt;}
.x6{left:90.697733pt;}
.xd{left:314.145867pt;}
.x9{left:321.699600pt;}
.xc{left:325.479200pt;}
.xa{left:333.032933pt;}
.x8{left:579.238667pt;}
.x7{left:581.789200pt;}
}




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