
    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_4f24a02d8e49799357180cb5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_5e236eab0aabc22d3572366f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_b48d08928e274552a0e003c9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.261230;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_f52d7829d79194879b76876d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.025391;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_2433b32783a885aecc29adf5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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_727c6b939221fe7a3556d061.woff')format("woff");}.ff6{font-family:ff6;line-height:1.261230;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);}
.v5{vertical-align:-16.974000px;}
.v4{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.974000px;}
.v1{vertical-align:81.000000px;}
.v2{vertical-align:97.974000px;}
.ls33{letter-spacing:-7.245000px;}
.ls36{letter-spacing:-5.520000px;}
.ls1c{letter-spacing:-4.278000px;}
.ls42{letter-spacing:-3.795000px;}
.ls2e{letter-spacing:-2.898000px;}
.ls46{letter-spacing:-2.484000px;}
.ls3b{letter-spacing:-2.346000px;}
.ls2d{letter-spacing:-2.208000px;}
.ls12{letter-spacing:-2.139000px;}
.ls44{letter-spacing:-2.070000px;}
.ls38{letter-spacing:-2.001000px;}
.ls1b{letter-spacing:-1.932000px;}
.ls3d{letter-spacing:-1.863000px;}
.ls22{letter-spacing:-1.794000px;}
.ls31{letter-spacing:-1.725000px;}
.ls37{letter-spacing:-1.656000px;}
.ls2f{letter-spacing:-1.587000px;}
.ls24{letter-spacing:-1.518000px;}
.ls27{letter-spacing:-1.449000px;}
.ls19{letter-spacing:-1.380000px;}
.ls23{letter-spacing:-1.311000px;}
.ls26{letter-spacing:-1.242000px;}
.lsa{letter-spacing:-1.173000px;}
.ls32{letter-spacing:-1.104000px;}
.ls28{letter-spacing:-1.035000px;}
.lsf{letter-spacing:-0.975000px;}
.ls15{letter-spacing:-0.966000px;}
.ls1a{letter-spacing:-0.897000px;}
.ls56{letter-spacing:-0.840000px;}
.ls16{letter-spacing:-0.828000px;}
.ls25{letter-spacing:-0.759000px;}
.ls8{letter-spacing:-0.690000px;}
.ls34{letter-spacing:-0.621000px;}
.lsb{letter-spacing:-0.486000px;}
.ls14{letter-spacing:-0.483000px;}
.ls7{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.414000px;}
.ls52{letter-spacing:-0.345000px;}
.ls2b{letter-spacing:-0.324000px;}
.ls48{letter-spacing:-0.276000px;}
.ls55{letter-spacing:-0.240000px;}
.ls4c{letter-spacing:-0.207000px;}
.ls6{letter-spacing:-0.180000px;}
.ls30{letter-spacing:-0.138000px;}
.ls43{letter-spacing:-0.069000px;}
.ls2a{letter-spacing:-0.054000px;}
.ls4{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.004500px;}
.ls39{letter-spacing:0.069000px;}
.ls4b{letter-spacing:0.138000px;}
.ls3a{letter-spacing:0.207000px;}
.ls4d{letter-spacing:0.414000px;}
.ls50{letter-spacing:0.450000px;}
.ls1{letter-spacing:0.519730px;}
.ls2{letter-spacing:0.586500px;}
.ls9{letter-spacing:0.621000px;}
.ls51{letter-spacing:0.690000px;}
.ls3f{letter-spacing:0.759000px;}
.ls49{letter-spacing:0.966000px;}
.ls13{letter-spacing:1.035000px;}
.ls40{letter-spacing:1.104000px;}
.ls29{letter-spacing:1.173000px;}
.ls47{letter-spacing:1.242000px;}
.ls1f{letter-spacing:1.312500px;}
.ls11{letter-spacing:1.512000px;}
.ls17{letter-spacing:1.587000px;}
.ls3e{letter-spacing:1.794000px;}
.ls35{letter-spacing:2.070000px;}
.ls4e{letter-spacing:2.277000px;}
.lse{letter-spacing:2.400000px;}
.ls4a{letter-spacing:2.691000px;}
.ls3{letter-spacing:2.734500px;}
.ls1e{letter-spacing:3.581100px;}
.lsd{letter-spacing:4.623000px;}
.ls53{letter-spacing:5.727000px;}
.ls21{letter-spacing:5.940000px;}
.ls10{letter-spacing:6.000000px;}
.ls3c{letter-spacing:6.003000px;}
.ls5{letter-spacing:7.260000px;}
.ls45{letter-spacing:10.833000px;}
.ls4f{letter-spacing:466.710600px;}
.lsc{letter-spacing:468.765600px;}
.ls2c{letter-spacing:469.177800px;}
.ls41{letter-spacing:936.348000px;}
.ls0{letter-spacing:939.468000px;}
.ls1d{letter-spacing:943.518000px;}
.ls54{letter-spacing:945.498000px;}
.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;}
}
.ws5c{word-spacing:-21.525000px;}
.ws8{word-spacing:-20.100000px;}
.ws1a{word-spacing:-19.389000px;}
.ws48{word-spacing:-17.733000px;}
.ws4c{word-spacing:-17.457000px;}
.ws19{word-spacing:-17.043000px;}
.ws4b{word-spacing:-16.905000px;}
.ws5e{word-spacing:-16.698000px;}
.ws1b{word-spacing:-16.629000px;}
.ws47{word-spacing:-16.560000px;}
.ws49{word-spacing:-16.422000px;}
.ws27{word-spacing:-16.353000px;}
.ws46{word-spacing:-16.284000px;}
.ws31{word-spacing:-16.215000px;}
.ws2c{word-spacing:-16.146000px;}
.ws2e{word-spacing:-16.077000px;}
.ws1d{word-spacing:-16.008000px;}
.ws2b{word-spacing:-15.939000px;}
.ws0{word-spacing:-15.870000px;}
.ws18{word-spacing:-15.801000px;}
.ws1e{word-spacing:-15.732000px;}
.ws30{word-spacing:-15.663000px;}
.ws1c{word-spacing:-15.594000px;}
.ws17{word-spacing:-15.525000px;}
.ws28{word-spacing:-15.456000px;}
.ws4d{word-spacing:-15.387000px;}
.ws2a{word-spacing:-15.318000px;}
.ws29{word-spacing:-15.249000px;}
.ws5d{word-spacing:-15.180000px;}
.wsa{word-spacing:-15.111000px;}
.ws2f{word-spacing:-15.042000px;}
.ws4a{word-spacing:-14.973000px;}
.ws64{word-spacing:-13.980000px;}
.ws9{word-spacing:-13.314000px;}
.ws63{word-spacing:-11.303787px;}
.ws51{word-spacing:-10.833000px;}
.ws2{word-spacing:-7.260000px;}
.ws3f{word-spacing:-6.003000px;}
.wsc{word-spacing:-6.000000px;}
.ws1f{word-spacing:-5.940000px;}
.ws62{word-spacing:-5.727000px;}
.ws57{word-spacing:-2.691000px;}
.wsb{word-spacing:-2.400000px;}
.ws5b{word-spacing:-2.277000px;}
.ws39{word-spacing:-2.070000px;}
.ws42{word-spacing:-1.794000px;}
.ws12{word-spacing:-1.587000px;}
.ws53{word-spacing:-1.242000px;}
.ws24{word-spacing:-1.173000px;}
.ws44{word-spacing:-1.104000px;}
.wse{word-spacing:-1.035000px;}
.ws55{word-spacing:-0.966000px;}
.ws43{word-spacing:-0.759000px;}
.ws60{word-spacing:-0.690000px;}
.ws6{word-spacing:-0.621000px;}
.ws3d{word-spacing:-0.207000px;}
.ws58{word-spacing:-0.138000px;}
.ws3c{word-spacing:-0.069000px;}
.ws1{word-spacing:0.000000px;}
.ws25{word-spacing:0.054000px;}
.ws4f{word-spacing:0.069000px;}
.ws34{word-spacing:0.138000px;}
.ws3{word-spacing:0.180000px;}
.ws59{word-spacing:0.207000px;}
.ws65{word-spacing:0.240000px;}
.ws54{word-spacing:0.276000px;}
.ws26{word-spacing:0.324000px;}
.ws61{word-spacing:0.345000px;}
.ws13{word-spacing:0.414000px;}
.ws4{word-spacing:0.432000px;}
.wsf{word-spacing:0.483000px;}
.ws7{word-spacing:0.486000px;}
.ws38{word-spacing:0.621000px;}
.ws5{word-spacing:0.690000px;}
.ws22{word-spacing:0.759000px;}
.ws11{word-spacing:0.828000px;}
.ws15{word-spacing:0.897000px;}
.ws10{word-spacing:0.966000px;}
.ws36{word-spacing:1.035000px;}
.ws35{word-spacing:1.104000px;}
.ws23{word-spacing:1.173000px;}
.ws37{word-spacing:1.242000px;}
.ws21{word-spacing:1.311000px;}
.ws14{word-spacing:1.380000px;}
.ws5a{word-spacing:1.449000px;}
.ws56{word-spacing:1.518000px;}
.ws40{word-spacing:1.587000px;}
.ws3b{word-spacing:1.656000px;}
.ws20{word-spacing:1.794000px;}
.ws41{word-spacing:1.863000px;}
.ws16{word-spacing:1.932000px;}
.ws5f{word-spacing:2.001000px;}
.ws50{word-spacing:2.070000px;}
.wsd{word-spacing:2.139000px;}
.ws32{word-spacing:2.208000px;}
.ws3e{word-spacing:2.346000px;}
.ws52{word-spacing:2.484000px;}
.ws33{word-spacing:2.898000px;}
.ws4e{word-spacing:3.795000px;}
.ws3a{word-spacing:5.520000px;}
.ws2d{word-spacing:5.865000px;}
.ws45{word-spacing:8.153838px;}
._18{margin-left:-14.398200px;}
._16{margin-left:-11.834100px;}
._a{margin-left:-10.540800px;}
._17{margin-left:-8.728500px;}
._5{margin-left:-7.602000px;}
._c{margin-left:-6.571800px;}
._14{margin-left:-5.464200px;}
._9{margin-left:-4.447800px;}
._8{margin-left:-3.181200px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._3{width:2.721000px;}
._b{width:4.136400px;}
._4{width:6.096000px;}
._6{width:7.260000px;}
._7{width:8.568000px;}
._d{width:9.571500px;}
._e{width:10.702500px;}
._f{width:11.708700px;}
._10{width:13.243800px;}
._13{width:16.042200px;}
._12{width:17.146500px;}
._19{width:20.442900px;}
._15{width:35.291322px;}
._11{width:43.445160px;}
._0{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fs9{font-size:31.482000px;}
.fs8{font-size:40.227000px;}
.fsc{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y49{bottom:106.165500px;}
.ybd{bottom:106.269000px;}
.y71{bottom:106.296300px;}
.y97{bottom:106.299300px;}
.y20{bottom:109.294800px;}
.y70{bottom:126.544800px;}
.y48{bottom:126.589500px;}
.ybc{bottom:127.227750px;}
.y1f{bottom:127.798200px;}
.y6f{bottom:145.048500px;}
.y47{bottom:147.013500px;}
.y1e{bottom:148.046700px;}
.ybb{bottom:148.186500px;}
.y96{bottom:153.396000px;}
.y6e{bottom:165.297000px;}
.y46{bottom:167.437500px;}
.yba{bottom:169.145250px;}
.y95{bottom:173.647500px;}
.y45{bottom:187.861500px;}
.yb9{bottom:190.104000px;}
.y1d{bottom:192.075000px;}
.y94{bottom:193.899000px;}
.y44{bottom:208.285500px;}
.y6d{bottom:209.382000px;}
.yb8{bottom:211.062750px;}
.y1c{bottom:212.568000px;}
.y93{bottom:214.150500px;}
.y43{bottom:228.709500px;}
.y6c{bottom:229.771500px;}
.yb7{bottom:232.021500px;}
.y1b{bottom:233.061000px;}
.y92{bottom:234.402000px;}
.y42{bottom:249.133500px;}
.y6b{bottom:250.161000px;}
.yb6{bottom:252.980250px;}
.y1a{bottom:253.554000px;}
.y91{bottom:254.653500px;}
.y41{bottom:269.557500px;}
.y6a{bottom:270.550500px;}
.yb5{bottom:273.939000px;}
.y19{bottom:274.047000px;}
.y90{bottom:274.905000px;}
.y40{bottom:289.981500px;}
.y69{bottom:290.940000px;}
.y18{bottom:294.540000px;}
.yb4{bottom:294.897750px;}
.y8f{bottom:295.156500px;}
.y3f{bottom:310.405500px;}
.y68{bottom:311.329500px;}
.y17{bottom:315.033000px;}
.y8e{bottom:315.408000px;}
.yb3{bottom:315.856500px;}
.y3e{bottom:330.829500px;}
.y67{bottom:331.719000px;}
.y16{bottom:335.526000px;}
.y8d{bottom:335.659500px;}
.yb2{bottom:336.815250px;}
.y3d{bottom:351.253500px;}
.y66{bottom:352.108500px;}
.y8c{bottom:355.911000px;}
.y15{bottom:356.019000px;}
.yb1{bottom:357.774000px;}
.y3c{bottom:371.677500px;}
.y65{bottom:372.498000px;}
.y8b{bottom:376.162500px;}
.y14{bottom:376.512000px;}
.yb0{bottom:378.732750px;}
.y3b{bottom:392.101500px;}
.y64{bottom:392.887500px;}
.y8a{bottom:396.414000px;}
.y13{bottom:397.005000px;}
.yaf{bottom:399.691500px;}
.y3a{bottom:412.525500px;}
.y63{bottom:413.277000px;}
.y89{bottom:416.665500px;}
.y12{bottom:417.498000px;}
.yae{bottom:420.650250px;}
.yc3{bottom:423.192000px;}
.y39{bottom:432.949500px;}
.y62{bottom:433.666500px;}
.y88{bottom:436.917000px;}
.y11{bottom:437.991000px;}
.yad{bottom:441.609000px;}
.yc2{bottom:443.442000px;}
.y38{bottom:453.373500px;}
.y61{bottom:454.056000px;}
.y87{bottom:457.168500px;}
.y10{bottom:458.484000px;}
.yac{bottom:462.567750px;}
.yc1{bottom:463.692000px;}
.y37{bottom:473.797500px;}
.y60{bottom:474.445500px;}
.y86{bottom:477.420000px;}
.yf{bottom:478.977000px;}
.ye{bottom:478.978500px;}
.yab{bottom:483.526500px;}
.yc0{bottom:483.942000px;}
.y36{bottom:494.221500px;}
.y5f{bottom:494.835000px;}
.y85{bottom:497.671500px;}
.yaa{bottom:504.485250px;}
.y35{bottom:514.645500px;}
.y5e{bottom:515.224500px;}
.ybf{bottom:516.942000px;}
.y84{bottom:517.923000px;}
.ya9{bottom:525.444000px;}
.y34{bottom:535.069500px;}
.y5d{bottom:535.690500px;}
.y83{bottom:538.174500px;}
.ya8{bottom:546.402750px;}
.yd{bottom:549.493500px;}
.y33{bottom:555.493500px;}
.y5c{bottom:556.080000px;}
.y82{bottom:558.426000px;}
.ybe{bottom:558.450000px;}
.ya7{bottom:567.361500px;}
.yc{bottom:570.733500px;}
.y32{bottom:575.917500px;}
.y5b{bottom:576.469500px;}
.y81{bottom:578.677500px;}
.ya6{bottom:588.320250px;}
.yb{bottom:591.973500px;}
.y31{bottom:596.341500px;}
.y5a{bottom:596.859000px;}
.y80{bottom:598.929000px;}
.ya5{bottom:609.279000px;}
.y30{bottom:616.765500px;}
.y59{bottom:617.248500px;}
.y7f{bottom:619.180500px;}
.ya4{bottom:630.237750px;}
.y2f{bottom:637.189500px;}
.y58{bottom:637.638000px;}
.y7e{bottom:639.432000px;}
.ya{bottom:642.955500px;}
.ya3{bottom:651.196500px;}
.y2e{bottom:657.613500px;}
.y57{bottom:658.027500px;}
.y7d{bottom:659.683500px;}
.ya2{bottom:672.155250px;}
.y9{bottom:674.707500px;}
.y2d{bottom:678.037500px;}
.y56{bottom:678.417000px;}
.y7c{bottom:679.935000px;}
.ya1{bottom:693.114000px;}
.y2c{bottom:698.461500px;}
.y55{bottom:698.806500px;}
.y7b{bottom:700.186500px;}
.y8{bottom:706.459500px;}
.ya0{bottom:714.072750px;}
.y2b{bottom:718.885500px;}
.y54{bottom:719.196000px;}
.y7a{bottom:720.438000px;}
.y9f{bottom:735.031500px;}
.y7{bottom:738.211500px;}
.y2a{bottom:739.309500px;}
.y53{bottom:739.585500px;}
.y79{bottom:740.689500px;}
.y9e{bottom:755.990250px;}
.y29{bottom:759.733500px;}
.y52{bottom:759.975000px;}
.y78{bottom:760.941000px;}
.y6{bottom:769.956000px;}
.y9d{bottom:776.949000px;}
.y28{bottom:780.157500px;}
.y51{bottom:780.364500px;}
.y77{bottom:781.192500px;}
.y9c{bottom:797.907750px;}
.y27{bottom:800.581500px;}
.y50{bottom:800.754000px;}
.y76{bottom:801.444000px;}
.y9b{bottom:818.866500px;}
.y26{bottom:821.005500px;}
.y4f{bottom:821.143500px;}
.y75{bottom:821.695500px;}
.y5{bottom:831.469500px;}
.y9a{bottom:839.825250px;}
.y25{bottom:841.429500px;}
.y4e{bottom:841.533000px;}
.y74{bottom:841.947000px;}
.y4{bottom:852.709500px;}
.y99{bottom:860.784000px;}
.y24{bottom:861.853500px;}
.y4d{bottom:861.922500px;}
.y73{bottom:862.198500px;}
.y98{bottom:881.742750px;}
.y23{bottom:882.277500px;}
.y4c{bottom:882.312000px;}
.y72{bottom:882.450000px;}
.y3{bottom:882.454500px;}
.y22{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y21{bottom:948.189000px;}
.y4b{bottom:966.189000px;}
.y4a{bottom:984.189000px;}
.h11{height:26.732030px;}
.hc{height:35.347102px;}
.hd{height:42.070312px;}
.ha{height:42.228938px;}
.hb{height:47.329102px;}
.h4{height:52.587891px;}
.h10{height:54.210938px;}
.h3{height:55.217285px;}
.he{height:60.234375px;}
.h9{height:60.476074px;}
.h2{height:65.734863px;}
.hf{height:68.963531px;}
.h8{height:69.269531px;}
.h5{height:73.623047px;}
.h6{height:94.658203px;}
.h7{height:174.600737px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:81.496500px;}
.x4{left:83.337150px;}
.x1{left:85.039350px;}
.x6{left:105.923250px;}
.x8{left:108.512850px;}
.x5{left:120.608250px;}
.x3{left:232.342500px;}
.x2{left:233.415000px;}
@media print{
.v5{vertical-align:-15.088000pt;}
.v4{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.088000pt;}
.v1{vertical-align:72.000000pt;}
.v2{vertical-align:87.088000pt;}
.ls33{letter-spacing:-6.440000pt;}
.ls36{letter-spacing:-4.906667pt;}
.ls1c{letter-spacing:-3.802667pt;}
.ls42{letter-spacing:-3.373333pt;}
.ls2e{letter-spacing:-2.576000pt;}
.ls46{letter-spacing:-2.208000pt;}
.ls3b{letter-spacing:-2.085333pt;}
.ls2d{letter-spacing:-1.962667pt;}
.ls12{letter-spacing:-1.901333pt;}
.ls44{letter-spacing:-1.840000pt;}
.ls38{letter-spacing:-1.778667pt;}
.ls1b{letter-spacing:-1.717333pt;}
.ls3d{letter-spacing:-1.656000pt;}
.ls22{letter-spacing:-1.594667pt;}
.ls31{letter-spacing:-1.533333pt;}
.ls37{letter-spacing:-1.472000pt;}
.ls2f{letter-spacing:-1.410667pt;}
.ls24{letter-spacing:-1.349333pt;}
.ls27{letter-spacing:-1.288000pt;}
.ls19{letter-spacing:-1.226667pt;}
.ls23{letter-spacing:-1.165333pt;}
.ls26{letter-spacing:-1.104000pt;}
.lsa{letter-spacing:-1.042667pt;}
.ls32{letter-spacing:-0.981333pt;}
.ls28{letter-spacing:-0.920000pt;}
.lsf{letter-spacing:-0.866667pt;}
.ls15{letter-spacing:-0.858667pt;}
.ls1a{letter-spacing:-0.797333pt;}
.ls56{letter-spacing:-0.746667pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls25{letter-spacing:-0.674667pt;}
.ls8{letter-spacing:-0.613333pt;}
.ls34{letter-spacing:-0.552000pt;}
.lsb{letter-spacing:-0.432000pt;}
.ls14{letter-spacing:-0.429333pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.368000pt;}
.ls52{letter-spacing:-0.306667pt;}
.ls2b{letter-spacing:-0.288000pt;}
.ls48{letter-spacing:-0.245333pt;}
.ls55{letter-spacing:-0.213333pt;}
.ls4c{letter-spacing:-0.184000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls30{letter-spacing:-0.122667pt;}
.ls43{letter-spacing:-0.061333pt;}
.ls2a{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.004000pt;}
.ls39{letter-spacing:0.061333pt;}
.ls4b{letter-spacing:0.122667pt;}
.ls3a{letter-spacing:0.184000pt;}
.ls4d{letter-spacing:0.368000pt;}
.ls50{letter-spacing:0.400000pt;}
.ls1{letter-spacing:0.461982pt;}
.ls2{letter-spacing:0.521333pt;}
.ls9{letter-spacing:0.552000pt;}
.ls51{letter-spacing:0.613333pt;}
.ls3f{letter-spacing:0.674667pt;}
.ls49{letter-spacing:0.858667pt;}
.ls13{letter-spacing:0.920000pt;}
.ls40{letter-spacing:0.981333pt;}
.ls29{letter-spacing:1.042667pt;}
.ls47{letter-spacing:1.104000pt;}
.ls1f{letter-spacing:1.166667pt;}
.ls11{letter-spacing:1.344000pt;}
.ls17{letter-spacing:1.410667pt;}
.ls3e{letter-spacing:1.594667pt;}
.ls35{letter-spacing:1.840000pt;}
.ls4e{letter-spacing:2.024000pt;}
.lse{letter-spacing:2.133333pt;}
.ls4a{letter-spacing:2.392000pt;}
.ls3{letter-spacing:2.430667pt;}
.ls1e{letter-spacing:3.183200pt;}
.lsd{letter-spacing:4.109333pt;}
.ls53{letter-spacing:5.090667pt;}
.ls21{letter-spacing:5.280000pt;}
.ls10{letter-spacing:5.333333pt;}
.ls3c{letter-spacing:5.336000pt;}
.ls5{letter-spacing:6.453333pt;}
.ls45{letter-spacing:9.629333pt;}
.ls4f{letter-spacing:414.853867pt;}
.lsc{letter-spacing:416.680533pt;}
.ls2c{letter-spacing:417.046933pt;}
.ls41{letter-spacing:832.309333pt;}
.ls0{letter-spacing:835.082667pt;}
.ls1d{letter-spacing:838.682667pt;}
.ls54{letter-spacing:840.442667pt;}
.ws5c{word-spacing:-19.133333pt;}
.ws8{word-spacing:-17.866667pt;}
.ws1a{word-spacing:-17.234667pt;}
.ws48{word-spacing:-15.762667pt;}
.ws4c{word-spacing:-15.517333pt;}
.ws19{word-spacing:-15.149333pt;}
.ws4b{word-spacing:-15.026667pt;}
.ws5e{word-spacing:-14.842667pt;}
.ws1b{word-spacing:-14.781333pt;}
.ws47{word-spacing:-14.720000pt;}
.ws49{word-spacing:-14.597333pt;}
.ws27{word-spacing:-14.536000pt;}
.ws46{word-spacing:-14.474667pt;}
.ws31{word-spacing:-14.413333pt;}
.ws2c{word-spacing:-14.352000pt;}
.ws2e{word-spacing:-14.290667pt;}
.ws1d{word-spacing:-14.229333pt;}
.ws2b{word-spacing:-14.168000pt;}
.ws0{word-spacing:-14.106667pt;}
.ws18{word-spacing:-14.045333pt;}
.ws1e{word-spacing:-13.984000pt;}
.ws30{word-spacing:-13.922667pt;}
.ws1c{word-spacing:-13.861333pt;}
.ws17{word-spacing:-13.800000pt;}
.ws28{word-spacing:-13.738667pt;}
.ws4d{word-spacing:-13.677333pt;}
.ws2a{word-spacing:-13.616000pt;}
.ws29{word-spacing:-13.554667pt;}
.ws5d{word-spacing:-13.493333pt;}
.wsa{word-spacing:-13.432000pt;}
.ws2f{word-spacing:-13.370667pt;}
.ws4a{word-spacing:-13.309333pt;}
.ws64{word-spacing:-12.426667pt;}
.ws9{word-spacing:-11.834667pt;}
.ws63{word-spacing:-10.047811pt;}
.ws51{word-spacing:-9.629333pt;}
.ws2{word-spacing:-6.453333pt;}
.ws3f{word-spacing:-5.336000pt;}
.wsc{word-spacing:-5.333333pt;}
.ws1f{word-spacing:-5.280000pt;}
.ws62{word-spacing:-5.090667pt;}
.ws57{word-spacing:-2.392000pt;}
.wsb{word-spacing:-2.133333pt;}
.ws5b{word-spacing:-2.024000pt;}
.ws39{word-spacing:-1.840000pt;}
.ws42{word-spacing:-1.594667pt;}
.ws12{word-spacing:-1.410667pt;}
.ws53{word-spacing:-1.104000pt;}
.ws24{word-spacing:-1.042667pt;}
.ws44{word-spacing:-0.981333pt;}
.wse{word-spacing:-0.920000pt;}
.ws55{word-spacing:-0.858667pt;}
.ws43{word-spacing:-0.674667pt;}
.ws60{word-spacing:-0.613333pt;}
.ws6{word-spacing:-0.552000pt;}
.ws3d{word-spacing:-0.184000pt;}
.ws58{word-spacing:-0.122667pt;}
.ws3c{word-spacing:-0.061333pt;}
.ws1{word-spacing:0.000000pt;}
.ws25{word-spacing:0.048000pt;}
.ws4f{word-spacing:0.061333pt;}
.ws34{word-spacing:0.122667pt;}
.ws3{word-spacing:0.160000pt;}
.ws59{word-spacing:0.184000pt;}
.ws65{word-spacing:0.213333pt;}
.ws54{word-spacing:0.245333pt;}
.ws26{word-spacing:0.288000pt;}
.ws61{word-spacing:0.306667pt;}
.ws13{word-spacing:0.368000pt;}
.ws4{word-spacing:0.384000pt;}
.wsf{word-spacing:0.429333pt;}
.ws7{word-spacing:0.432000pt;}
.ws38{word-spacing:0.552000pt;}
.ws5{word-spacing:0.613333pt;}
.ws22{word-spacing:0.674667pt;}
.ws11{word-spacing:0.736000pt;}
.ws15{word-spacing:0.797333pt;}
.ws10{word-spacing:0.858667pt;}
.ws36{word-spacing:0.920000pt;}
.ws35{word-spacing:0.981333pt;}
.ws23{word-spacing:1.042667pt;}
.ws37{word-spacing:1.104000pt;}
.ws21{word-spacing:1.165333pt;}
.ws14{word-spacing:1.226667pt;}
.ws5a{word-spacing:1.288000pt;}
.ws56{word-spacing:1.349333pt;}
.ws40{word-spacing:1.410667pt;}
.ws3b{word-spacing:1.472000pt;}
.ws20{word-spacing:1.594667pt;}
.ws41{word-spacing:1.656000pt;}
.ws16{word-spacing:1.717333pt;}
.ws5f{word-spacing:1.778667pt;}
.ws50{word-spacing:1.840000pt;}
.wsd{word-spacing:1.901333pt;}
.ws32{word-spacing:1.962667pt;}
.ws3e{word-spacing:2.085333pt;}
.ws52{word-spacing:2.208000pt;}
.ws33{word-spacing:2.576000pt;}
.ws4e{word-spacing:3.373333pt;}
.ws3a{word-spacing:4.906667pt;}
.ws2d{word-spacing:5.213333pt;}
.ws45{word-spacing:7.247856pt;}
._18{margin-left:-12.798400pt;}
._16{margin-left:-10.519200pt;}
._a{margin-left:-9.369600pt;}
._17{margin-left:-7.758667pt;}
._5{margin-left:-6.757333pt;}
._c{margin-left:-5.841600pt;}
._14{margin-left:-4.857067pt;}
._9{margin-left:-3.953600pt;}
._8{margin-left:-2.827733pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._3{width:2.418667pt;}
._b{width:3.676800pt;}
._4{width:5.418667pt;}
._6{width:6.453333pt;}
._7{width:7.616000pt;}
._d{width:8.508000pt;}
._e{width:9.513333pt;}
._f{width:10.407733pt;}
._10{width:11.772267pt;}
._13{width:14.259733pt;}
._12{width:15.241333pt;}
._19{width:18.171467pt;}
._15{width:31.370064pt;}
._11{width:38.617920pt;}
._0{width:514.133333pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:35.757333pt;}
.fsc{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y49{bottom:94.369333pt;}
.ybd{bottom:94.461333pt;}
.y71{bottom:94.485600pt;}
.y97{bottom:94.488267pt;}
.y20{bottom:97.150933pt;}
.y70{bottom:112.484267pt;}
.y48{bottom:112.524000pt;}
.ybc{bottom:113.091333pt;}
.y1f{bottom:113.598400pt;}
.y6f{bottom:128.932000pt;}
.y47{bottom:130.678667pt;}
.y1e{bottom:131.597067pt;}
.ybb{bottom:131.721333pt;}
.y96{bottom:136.352000pt;}
.y6e{bottom:146.930667pt;}
.y46{bottom:148.833333pt;}
.yba{bottom:150.351333pt;}
.y95{bottom:154.353333pt;}
.y45{bottom:166.988000pt;}
.yb9{bottom:168.981333pt;}
.y1d{bottom:170.733333pt;}
.y94{bottom:172.354667pt;}
.y44{bottom:185.142667pt;}
.y6d{bottom:186.117333pt;}
.yb8{bottom:187.611333pt;}
.y1c{bottom:188.949333pt;}
.y93{bottom:190.356000pt;}
.y43{bottom:203.297333pt;}
.y6c{bottom:204.241333pt;}
.yb7{bottom:206.241333pt;}
.y1b{bottom:207.165333pt;}
.y92{bottom:208.357333pt;}
.y42{bottom:221.452000pt;}
.y6b{bottom:222.365333pt;}
.yb6{bottom:224.871333pt;}
.y1a{bottom:225.381333pt;}
.y91{bottom:226.358667pt;}
.y41{bottom:239.606667pt;}
.y6a{bottom:240.489333pt;}
.yb5{bottom:243.501333pt;}
.y19{bottom:243.597333pt;}
.y90{bottom:244.360000pt;}
.y40{bottom:257.761333pt;}
.y69{bottom:258.613333pt;}
.y18{bottom:261.813333pt;}
.yb4{bottom:262.131333pt;}
.y8f{bottom:262.361333pt;}
.y3f{bottom:275.916000pt;}
.y68{bottom:276.737333pt;}
.y17{bottom:280.029333pt;}
.y8e{bottom:280.362667pt;}
.yb3{bottom:280.761333pt;}
.y3e{bottom:294.070667pt;}
.y67{bottom:294.861333pt;}
.y16{bottom:298.245333pt;}
.y8d{bottom:298.364000pt;}
.yb2{bottom:299.391333pt;}
.y3d{bottom:312.225333pt;}
.y66{bottom:312.985333pt;}
.y8c{bottom:316.365333pt;}
.y15{bottom:316.461333pt;}
.yb1{bottom:318.021333pt;}
.y3c{bottom:330.380000pt;}
.y65{bottom:331.109333pt;}
.y8b{bottom:334.366667pt;}
.y14{bottom:334.677333pt;}
.yb0{bottom:336.651333pt;}
.y3b{bottom:348.534667pt;}
.y64{bottom:349.233333pt;}
.y8a{bottom:352.368000pt;}
.y13{bottom:352.893333pt;}
.yaf{bottom:355.281333pt;}
.y3a{bottom:366.689333pt;}
.y63{bottom:367.357333pt;}
.y89{bottom:370.369333pt;}
.y12{bottom:371.109333pt;}
.yae{bottom:373.911333pt;}
.yc3{bottom:376.170667pt;}
.y39{bottom:384.844000pt;}
.y62{bottom:385.481333pt;}
.y88{bottom:388.370667pt;}
.y11{bottom:389.325333pt;}
.yad{bottom:392.541333pt;}
.yc2{bottom:394.170667pt;}
.y38{bottom:402.998667pt;}
.y61{bottom:403.605333pt;}
.y87{bottom:406.372000pt;}
.y10{bottom:407.541333pt;}
.yac{bottom:411.171333pt;}
.yc1{bottom:412.170667pt;}
.y37{bottom:421.153333pt;}
.y60{bottom:421.729333pt;}
.y86{bottom:424.373333pt;}
.yf{bottom:425.757333pt;}
.ye{bottom:425.758667pt;}
.yab{bottom:429.801333pt;}
.yc0{bottom:430.170667pt;}
.y36{bottom:439.308000pt;}
.y5f{bottom:439.853333pt;}
.y85{bottom:442.374667pt;}
.yaa{bottom:448.431333pt;}
.y35{bottom:457.462667pt;}
.y5e{bottom:457.977333pt;}
.ybf{bottom:459.504000pt;}
.y84{bottom:460.376000pt;}
.ya9{bottom:467.061333pt;}
.y34{bottom:475.617333pt;}
.y5d{bottom:476.169333pt;}
.y83{bottom:478.377333pt;}
.ya8{bottom:485.691333pt;}
.yd{bottom:488.438667pt;}
.y33{bottom:493.772000pt;}
.y5c{bottom:494.293333pt;}
.y82{bottom:496.378667pt;}
.ybe{bottom:496.400000pt;}
.ya7{bottom:504.321333pt;}
.yc{bottom:507.318667pt;}
.y32{bottom:511.926667pt;}
.y5b{bottom:512.417333pt;}
.y81{bottom:514.380000pt;}
.ya6{bottom:522.951333pt;}
.yb{bottom:526.198667pt;}
.y31{bottom:530.081333pt;}
.y5a{bottom:530.541333pt;}
.y80{bottom:532.381333pt;}
.ya5{bottom:541.581333pt;}
.y30{bottom:548.236000pt;}
.y59{bottom:548.665333pt;}
.y7f{bottom:550.382667pt;}
.ya4{bottom:560.211333pt;}
.y2f{bottom:566.390667pt;}
.y58{bottom:566.789333pt;}
.y7e{bottom:568.384000pt;}
.ya{bottom:571.516000pt;}
.ya3{bottom:578.841333pt;}
.y2e{bottom:584.545333pt;}
.y57{bottom:584.913333pt;}
.y7d{bottom:586.385333pt;}
.ya2{bottom:597.471333pt;}
.y9{bottom:599.740000pt;}
.y2d{bottom:602.700000pt;}
.y56{bottom:603.037333pt;}
.y7c{bottom:604.386667pt;}
.ya1{bottom:616.101333pt;}
.y2c{bottom:620.854667pt;}
.y55{bottom:621.161333pt;}
.y7b{bottom:622.388000pt;}
.y8{bottom:627.964000pt;}
.ya0{bottom:634.731333pt;}
.y2b{bottom:639.009333pt;}
.y54{bottom:639.285333pt;}
.y7a{bottom:640.389333pt;}
.y9f{bottom:653.361333pt;}
.y7{bottom:656.188000pt;}
.y2a{bottom:657.164000pt;}
.y53{bottom:657.409333pt;}
.y79{bottom:658.390667pt;}
.y9e{bottom:671.991333pt;}
.y29{bottom:675.318667pt;}
.y52{bottom:675.533333pt;}
.y78{bottom:676.392000pt;}
.y6{bottom:684.405333pt;}
.y9d{bottom:690.621333pt;}
.y28{bottom:693.473333pt;}
.y51{bottom:693.657333pt;}
.y77{bottom:694.393333pt;}
.y9c{bottom:709.251333pt;}
.y27{bottom:711.628000pt;}
.y50{bottom:711.781333pt;}
.y76{bottom:712.394667pt;}
.y9b{bottom:727.881333pt;}
.y26{bottom:729.782667pt;}
.y4f{bottom:729.905333pt;}
.y75{bottom:730.396000pt;}
.y5{bottom:739.084000pt;}
.y9a{bottom:746.511333pt;}
.y25{bottom:747.937333pt;}
.y4e{bottom:748.029333pt;}
.y74{bottom:748.397333pt;}
.y4{bottom:757.964000pt;}
.y99{bottom:765.141333pt;}
.y24{bottom:766.092000pt;}
.y4d{bottom:766.153333pt;}
.y73{bottom:766.398667pt;}
.y98{bottom:783.771333pt;}
.y23{bottom:784.246667pt;}
.y4c{bottom:784.277333pt;}
.y72{bottom:784.400000pt;}
.y3{bottom:784.404000pt;}
.y22{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y21{bottom:842.834667pt;}
.y4b{bottom:858.834667pt;}
.y4a{bottom:874.834667pt;}
.h11{height:23.761805pt;}
.hc{height:31.419646pt;}
.hd{height:37.395833pt;}
.ha{height:37.536833pt;}
.hb{height:42.070312pt;}
.h4{height:46.744792pt;}
.h10{height:48.187500pt;}
.h3{height:49.082031pt;}
.he{height:53.541667pt;}
.h9{height:53.756510pt;}
.h2{height:58.430990pt;}
.hf{height:61.300917pt;}
.h8{height:61.572917pt;}
.h5{height:65.442708pt;}
.h6{height:84.140625pt;}
.h7{height:155.200655pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:72.441333pt;}
.x4{left:74.077467pt;}
.x1{left:75.590533pt;}
.x6{left:94.154000pt;}
.x8{left:96.455867pt;}
.x5{left:107.207333pt;}
.x3{left:206.526667pt;}
.x2{left:207.480000pt;}
}




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