
    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_d31e7d372165f28b7f3d5bf5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_40d2d43dd2b8740b2ccb57a9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_ff6e4dccc0f39fb76cf2bc65.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_8568346c26613114fbb50955.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_12dbdd1ae2074b03c4a3e34b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_6d98f8c3b6cdabd978953492.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_333f5d89aaeed6f15cbb4951.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_b267f371d0f5c3ca160aac6b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_273261fb049f2dd1c7d70d5f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ecfdbedc145da4a5fe0fffc1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_53eaad2d7a53d83fb6aeae89.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_576c719c31a2eb18671939ef.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b207099d96ea08045e241771.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_98aa79c53f366387097deaed.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b3f4d1e374a891bdc02e32c7.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c3bd5fa81ebcb7a2ddf18800.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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:ff11;src:url('chunks/assets/font_40d2d43dd2b8740b2ccb57a9.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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:ff12;src:url('chunks/assets/font_7842fc35fc3ccbc268d9df8d.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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:ff13;src:url('chunks/assets/font_e7c5698aca68d3d9ad8fa161.woff')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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:ff14;src:url('chunks/assets/font_c91a1f38fd67be7673e4e2c8.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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:ff15;src:url('chunks/assets/font_3811f35a95f7d54f6949064b.woff')format("woff");}.ff15{font-family:ff15;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-3.455052px;}
.ls6{letter-spacing:-2.046000px;}
.ls9{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.756000px;}
.ls8{letter-spacing:-0.660000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.428985px;}
.ls2{letter-spacing:1.200000px;}
.ls1{letter-spacing:3.600000px;}
.ls4{letter-spacing:9.590400px;}
.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;}
}
.ws1{word-spacing:-29.640000px;}
.ws35{word-spacing:-18.414000px;}
.ws52{word-spacing:-18.216000px;}
.ws5b{word-spacing:-18.144000px;}
.ws65{word-spacing:-17.754000px;}
.ws2{word-spacing:-16.740000px;}
.ws7c{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.368000px;}
.ws0{word-spacing:-15.066000px;}
.ws14{word-spacing:-14.100000px;}
.ws15{word-spacing:-9.686400px;}
.ws3f{word-spacing:-6.402000px;}
.ws31{word-spacing:-5.940000px;}
.ws76{word-spacing:-5.874000px;}
.ws50{word-spacing:-4.950000px;}
.ws43{word-spacing:-4.686000px;}
.ws2c{word-spacing:-4.158000px;}
.ws4e{word-spacing:-3.960000px;}
.ws6e{word-spacing:-3.498000px;}
.ws20{word-spacing:-3.432000px;}
.ws36{word-spacing:-3.366000px;}
.ws5d{word-spacing:-3.300000px;}
.ws4b{word-spacing:-3.168000px;}
.ws30{word-spacing:-2.838000px;}
.ws29{word-spacing:-2.772000px;}
.ws1d{word-spacing:-2.640000px;}
.ws83{word-spacing:-2.580000px;}
.ws4{word-spacing:-2.322000px;}
.ws69{word-spacing:-2.244000px;}
.ws2e{word-spacing:-1.914000px;}
.ws1b{word-spacing:-1.650000px;}
.ws4d{word-spacing:-1.518000px;}
.ws11{word-spacing:-1.512000px;}
.ws13{word-spacing:-1.404000px;}
.ws79{word-spacing:-1.122000px;}
.ws84{word-spacing:-0.840000px;}
.ws26{word-spacing:-0.792000px;}
.ws3d{word-spacing:-0.660000px;}
.ws6{word-spacing:-0.600000px;}
.ws5a{word-spacing:-0.594000px;}
.ws2f{word-spacing:-0.330000px;}
.ws3c{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws27{word-spacing:0.198000px;}
.ws8{word-spacing:0.216000px;}
.ws47{word-spacing:0.264000px;}
.ws9{word-spacing:0.270000px;}
.ws71{word-spacing:0.594000px;}
.ws81{word-spacing:0.600000px;}
.ws2a{word-spacing:0.726000px;}
.ws38{word-spacing:0.792000px;}
.ws67{word-spacing:0.924000px;}
.ws7d{word-spacing:0.990000px;}
.ws7a{word-spacing:1.122000px;}
.ws64{word-spacing:1.188000px;}
.ws82{word-spacing:1.200000px;}
.ws24{word-spacing:1.254000px;}
.ws6c{word-spacing:1.320000px;}
.ws63{word-spacing:1.386000px;}
.ws25{word-spacing:1.716000px;}
.ws85{word-spacing:1.860000px;}
.ws32{word-spacing:1.914000px;}
.ws86{word-spacing:1.920000px;}
.ws66{word-spacing:2.178000px;}
.ws87{word-spacing:2.220000px;}
.ws88{word-spacing:2.280000px;}
.ws33{word-spacing:2.640000px;}
.ws7b{word-spacing:2.706000px;}
.ws2d{word-spacing:2.772000px;}
.ws51{word-spacing:3.102000px;}
.ws6a{word-spacing:3.168000px;}
.ws53{word-spacing:3.234000px;}
.ws7{word-spacing:3.402000px;}
.ws55{word-spacing:3.432000px;}
.ws17{word-spacing:3.455052px;}
.ws34{word-spacing:3.564000px;}
.ws49{word-spacing:3.696000px;}
.ws22{word-spacing:3.762000px;}
.ws4c{word-spacing:3.960000px;}
.ws68{word-spacing:4.158000px;}
.wsb{word-spacing:4.212000px;}
.ws3a{word-spacing:4.224000px;}
.ws58{word-spacing:4.422000px;}
.ws80{word-spacing:4.440000px;}
.wse{word-spacing:4.482000px;}
.ws5{word-spacing:4.698000px;}
.ws28{word-spacing:4.818000px;}
.wsc{word-spacing:5.022000px;}
.ws37{word-spacing:5.214000px;}
.ws48{word-spacing:5.280000px;}
.ws3b{word-spacing:5.346000px;}
.ws5f{word-spacing:5.412000px;}
.ws75{word-spacing:5.544000px;}
.ws1c{word-spacing:5.940000px;}
.ws21{word-spacing:6.006000px;}
.ws40{word-spacing:6.072000px;}
.ws5c{word-spacing:6.336000px;}
.ws12{word-spacing:6.372000px;}
.ws59{word-spacing:6.600000px;}
.ws70{word-spacing:6.732000px;}
.ws6f{word-spacing:6.930000px;}
.ws1a{word-spacing:6.996000px;}
.ws72{word-spacing:7.062000px;}
.ws44{word-spacing:7.128000px;}
.ws60{word-spacing:7.194000px;}
.ws1e{word-spacing:7.260000px;}
.ws1f{word-spacing:7.326000px;}
.ws41{word-spacing:7.392000px;}
.ws56{word-spacing:7.524000px;}
.ws10{word-spacing:7.560000px;}
.ws77{word-spacing:7.590000px;}
.wsf{word-spacing:7.614000px;}
.ws23{word-spacing:7.656000px;}
.ws78{word-spacing:7.920000px;}
.ws45{word-spacing:8.382000px;}
.ws61{word-spacing:8.448000px;}
.ws73{word-spacing:8.514000px;}
.ws6b{word-spacing:8.580000px;}
.ws62{word-spacing:8.910000px;}
.ws57{word-spacing:9.306000px;}
.wsd{word-spacing:9.396000px;}
.ws5e{word-spacing:9.900000px;}
.wsa{word-spacing:10.260000px;}
.ws4f{word-spacing:10.560000px;}
.ws19{word-spacing:10.956000px;}
.ws7e{word-spacing:11.352000px;}
.ws7f{word-spacing:11.484000px;}
.ws39{word-spacing:11.748000px;}
.ws74{word-spacing:12.012000px;}
.ws4a{word-spacing:14.256000px;}
.ws54{word-spacing:14.586000px;}
.ws6d{word-spacing:16.038000px;}
.ws2b{word-spacing:16.830000px;}
.ws42{word-spacing:17.160000px;}
.ws3e{word-spacing:19.536000px;}
.ws46{word-spacing:19.800000px;}
.ws18{word-spacing:33.000000px;}
._6{margin-left:-9.198000px;}
._9{margin-left:-7.200000px;}
._3{margin-left:-5.880420px;}
._5{margin-left:-3.906000px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._8{width:3.470895px;}
._4{width:4.752000px;}
._a{width:6.471248px;}
._c{width:7.497600px;}
._10{width:8.732220px;}
._b{width:9.847095px;}
._e{width:10.929420px;}
._11{width:12.480960px;}
._13{width:13.530000px;}
._7{width:14.561826px;}
._12{width:15.576458px;}
._d{width:17.066295px;}
._14{width:20.037600px;}
._f{width:33.000000px;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:36.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs5{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.fs4{font-size:120.000000px;}
.fs8{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y34{bottom:17.983350px;}
.y33{bottom:26.200200px;}
.y35{bottom:30.614100px;}
.y2{bottom:42.949800px;}
.y32{bottom:47.200200px;}
.ya{bottom:53.999400px;}
.y36{bottom:55.288350px;}
.y31{bottom:68.200200px;}
.y9{bottom:70.199400px;}
.y8{bottom:86.399400px;}
.y7{bottom:106.851900px;}
.y2e{bottom:171.674400px;}
.yfd{bottom:172.840200px;}
.yd0{bottom:173.415900px;}
.y80{bottom:173.432400px;}
.yca{bottom:173.448900px;}
.ye6{bottom:173.465400px;}
.yc7{bottom:174.029400px;}
.y2d{bottom:192.680400px;}
.yfc{bottom:193.840200px;}
.yb9{bottom:195.905400px;}
.ycf{bottom:195.921900px;}
.y7f{bottom:195.938400px;}
.y9a{bottom:195.954900px;}
.ye5{bottom:195.971400px;}
.yc6{bottom:196.535400px;}
.y2c{bottom:209.177400px;}
.yb8{bottom:218.411400px;}
.yce{bottom:218.427900px;}
.ya2{bottom:218.444400px;}
.y99{bottom:218.460900px;}
.y59{bottom:219.023400px;}
.yfb{bottom:225.340200px;}
.y2b{bottom:225.674400px;}
.yb7{bottom:240.917400px;}
.y7e{bottom:240.933900px;}
.ya1{bottom:240.950400px;}
.y98{bottom:240.966900px;}
.y58{bottom:241.529400px;}
.yc5{bottom:241.535400px;}
.y2a{bottom:242.171400px;}
.yfa{bottom:246.340200px;}
.y29{bottom:258.668400px;}
.yb6{bottom:263.423400px;}
.y7d{bottom:263.439900px;}
.ya0{bottom:263.456400px;}
.y97{bottom:263.472900px;}
.y57{bottom:264.035400px;}
.y28{bottom:275.165400px;}
.yf9{bottom:277.840200px;}
.yb5{bottom:285.929400px;}
.y7c{bottom:285.945900px;}
.y9f{bottom:285.962400px;}
.ye4{bottom:285.978900px;}
.y27{bottom:291.662400px;}
.y26{bottom:308.159400px;}
.yb4{bottom:308.435400px;}
.y7b{bottom:308.451900px;}
.y96{bottom:308.468400px;}
.ye3{bottom:308.484900px;}
.y56{bottom:309.035400px;}
.yf8{bottom:309.340200px;}
.yc4{bottom:323.897400px;}
.yb3{bottom:330.941400px;}
.y7a{bottom:330.957900px;}
.y95{bottom:330.974400px;}
.ye2{bottom:330.990900px;}
.yf7{bottom:340.840200px;}
.y25{bottom:341.909400px;}
.yc3{bottom:346.403400px;}
.yb2{bottom:353.447400px;}
.y79{bottom:353.463900px;}
.y94{bottom:353.480400px;}
.ye1{bottom:353.496900px;}
.yf6{bottom:361.840200px;}
.y24{bottom:362.915400px;}
.yc2{bottom:368.909400px;}
.yb1{bottom:375.953400px;}
.yc9{bottom:375.969900px;}
.y93{bottom:375.986400px;}
.ye0{bottom:376.002900px;}
.y23{bottom:380.168400px;}
.y55{bottom:391.415400px;}
.yf5{bottom:393.340200px;}
.y22{bottom:397.421400px;}
.y78{bottom:398.459400px;}
.yc8{bottom:398.475900px;}
.y92{bottom:398.492400px;}
.y54{bottom:413.921400px;}
.y21{bottom:414.674400px;}
.y77{bottom:420.965400px;}
.y9e{bottom:420.981900px;}
.y91{bottom:420.998400px;}
.yf4{bottom:424.840200px;}
.y20{bottom:431.927400px;}
.y53{bottom:436.427400px;}
.y76{bottom:443.471400px;}
.y9d{bottom:443.487900px;}
.y90{bottom:443.504400px;}
.y1f{bottom:449.180400px;}
.yf3{bottom:456.340200px;}
.y75{bottom:465.977400px;}
.y9c{bottom:465.993900px;}
.y8f{bottom:466.010400px;}
.y1e{bottom:466.433400px;}
.yf2{bottom:477.340200px;}
.y52{bottom:481.422900px;}
.y1d{bottom:483.686400px;}
.yb0{bottom:488.466900px;}
.y74{bottom:488.483400px;}
.y9b{bottom:488.499900px;}
.y8e{bottom:488.516400px;}
.y51{bottom:503.928900px;}
.y1c{bottom:504.692400px;}
.yf1{bottom:508.840200px;}
.yaf{bottom:510.972900px;}
.y73{bottom:510.989400px;}
.ydf{bottom:511.022400px;}
.y1b{bottom:525.698400px;}
.yc1{bottom:526.434900px;}
.yae{bottom:533.478900px;}
.y72{bottom:533.495400px;}
.y8d{bottom:533.511900px;}
.yde{bottom:533.528400px;}
.yf0{bottom:540.340200px;}
.y1a{bottom:542.195400px;}
.y50{bottom:548.924400px;}
.yc0{bottom:548.940900px;}
.yad{bottom:555.984900px;}
.y71{bottom:556.001400px;}
.y8c{bottom:556.017900px;}
.y19{bottom:558.692400px;}
.y4f{bottom:571.430400px;}
.ybf{bottom:571.446900px;}
.yef{bottom:571.840200px;}
.y18{bottom:575.189400px;}
.yac{bottom:578.490900px;}
.y70{bottom:578.507400px;}
.y8b{bottom:578.523900px;}
.y17{bottom:591.686400px;}
.yee{bottom:592.840200px;}
.y4e{bottom:593.936400px;}
.ybe{bottom:593.952900px;}
.yab{bottom:600.996900px;}
.y6f{bottom:601.013400px;}
.ydd{bottom:601.029900px;}
.y16{bottom:608.183400px;}
.y4d{bottom:616.442400px;}
.ybd{bottom:616.458900px;}
.yaa{bottom:623.502900px;}
.y8a{bottom:623.519400px;}
.ydc{bottom:623.535900px;}
.yed{bottom:624.340200px;}
.y15{bottom:624.680400px;}
.y4c{bottom:638.948400px;}
.y14{bottom:641.177400px;}
.yec{bottom:645.340200px;}
.y6e{bottom:646.008900px;}
.y89{bottom:646.025400px;}
.ydb{bottom:646.041900px;}
.y4b{bottom:661.454400px;}
.y6d{bottom:668.514900px;}
.y88{bottom:668.531400px;}
.yda{bottom:668.547900px;}
.yeb{bottom:676.840200px;}
.y4a{bottom:683.960400px;}
.y6c{bottom:691.020900px;}
.y87{bottom:691.037400px;}
.yd9{bottom:691.053900px;}
.y13{bottom:695.430750px;}
.y49{bottom:706.466400px;}
.yea{bottom:708.340200px;}
.y6b{bottom:713.526900px;}
.y12{bottom:716.430750px;}
.y48{bottom:728.972400px;}
.ye9{bottom:729.340200px;}
.ya9{bottom:736.016400px;}
.y6a{bottom:736.032900px;}
.yd8{bottom:736.049400px;}
.y11{bottom:737.430750px;}
.y30{bottom:741.738900px;}
.y47{bottom:751.478400px;}
.y10{bottom:758.430750px;}
.ya8{bottom:758.522400px;}
.y69{bottom:758.538900px;}
.yd7{bottom:758.555400px;}
.y2f{bottom:761.232900px;}
.ye8{bottom:772.840200px;}
.y46{bottom:773.984400px;}
.ya7{bottom:781.028400px;}
.y68{bottom:781.044900px;}
.yd6{bottom:781.061400px;}
.ya6{bottom:803.534400px;}
.y86{bottom:803.550900px;}
.yd5{bottom:803.567400px;}
.y45{bottom:818.979900px;}
.y67{bottom:826.040400px;}
.y85{bottom:826.056900px;}
.yd4{bottom:826.073400px;}
.y44{bottom:841.485900px;}
.y66{bottom:848.546400px;}
.ye7{bottom:848.562900px;}
.yf{bottom:863.044500px;}
.y43{bottom:863.991900px;}
.y65{bottom:871.052400px;}
.yd3{bottom:871.068900px;}
.ybc{bottom:886.497900px;}
.ye{bottom:890.044500px;}
.ycd{bottom:893.541900px;}
.y64{bottom:893.558400px;}
.yd2{bottom:893.574900px;}
.y42{bottom:908.987400px;}
.ybb{bottom:909.003900px;}
.ycc{bottom:916.047900px;}
.y63{bottom:916.064400px;}
.yd1{bottom:916.080900px;}
.yd{bottom:929.800500px;}
.y41{bottom:931.493400px;}
.yba{bottom:931.509900px;}
.ycb{bottom:938.553900px;}
.y62{bottom:938.570400px;}
.y40{bottom:953.999400px;}
.ya5{bottom:961.059900px;}
.y61{bottom:961.076400px;}
.yc{bottom:964.300500px;}
.y3f{bottom:976.505400px;}
.ya4{bottom:983.565900px;}
.y60{bottom:983.582400px;}
.yb{bottom:998.800500px;}
.y3e{bottom:999.011400px;}
.ya3{bottom:1006.071900px;}
.y84{bottom:1006.088400px;}
.y3d{bottom:1021.517400px;}
.y5f{bottom:1028.577900px;}
.y83{bottom:1028.594400px;}
.y3c{bottom:1044.023400px;}
.y5e{bottom:1051.083900px;}
.y82{bottom:1051.100400px;}
.y3b{bottom:1066.529400px;}
.y5d{bottom:1073.589900px;}
.y81{bottom:1073.606400px;}
.y3a{bottom:1089.035400px;}
.y5c{bottom:1096.095900px;}
.y6{bottom:1099.267350px;}
.y5b{bottom:1118.601900px;}
.y5{bottom:1131.232500px;}
.y39{bottom:1134.035400px;}
.y5a{bottom:1141.107900px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.y37{bottom:1185.328350px;}
.y38{bottom:1220.509800px;}
.h4{height:37.800000px;}
.h6{height:56.700000px;}
.h2{height:62.424000px;}
.h9{height:63.000000px;}
.h3{height:64.347750px;}
.h8{height:67.500000px;}
.h5{height:69.300000px;}
.ha{height:72.000000px;}
.hc{height:90.000000px;}
.h7{height:126.000000px;}
.hb{height:181.390230px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:354.229500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:21.259800px;}
.xc{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xf{left:106.299150px;}
.x2{left:155.902500px;}
.x3{left:209.902500px;}
.xa{left:212.598450px;}
.x6{left:221.456700px;}
.x7{left:223.378050px;}
.x9{left:236.359200px;}
.x8{left:239.130750px;}
.xd{left:815.527500px;}
.x10{left:823.527600px;}
.xe{left:824.824800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-3.071157pt;}
.ls6{letter-spacing:-1.818667pt;}
.ls9{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.672000pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.381320pt;}
.ls2{letter-spacing:1.066667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls4{letter-spacing:8.524800pt;}
.ws1{word-spacing:-26.346667pt;}
.ws35{word-spacing:-16.368000pt;}
.ws52{word-spacing:-16.192000pt;}
.ws5b{word-spacing:-16.128000pt;}
.ws65{word-spacing:-15.781333pt;}
.ws2{word-spacing:-14.880000pt;}
.ws7c{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.549333pt;}
.ws0{word-spacing:-13.392000pt;}
.ws14{word-spacing:-12.533333pt;}
.ws15{word-spacing:-8.610133pt;}
.ws3f{word-spacing:-5.690667pt;}
.ws31{word-spacing:-5.280000pt;}
.ws76{word-spacing:-5.221333pt;}
.ws50{word-spacing:-4.400000pt;}
.ws43{word-spacing:-4.165333pt;}
.ws2c{word-spacing:-3.696000pt;}
.ws4e{word-spacing:-3.520000pt;}
.ws6e{word-spacing:-3.109333pt;}
.ws20{word-spacing:-3.050667pt;}
.ws36{word-spacing:-2.992000pt;}
.ws5d{word-spacing:-2.933333pt;}
.ws4b{word-spacing:-2.816000pt;}
.ws30{word-spacing:-2.522667pt;}
.ws29{word-spacing:-2.464000pt;}
.ws1d{word-spacing:-2.346667pt;}
.ws83{word-spacing:-2.293333pt;}
.ws4{word-spacing:-2.064000pt;}
.ws69{word-spacing:-1.994667pt;}
.ws2e{word-spacing:-1.701333pt;}
.ws1b{word-spacing:-1.466667pt;}
.ws4d{word-spacing:-1.349333pt;}
.ws11{word-spacing:-1.344000pt;}
.ws13{word-spacing:-1.248000pt;}
.ws79{word-spacing:-0.997333pt;}
.ws84{word-spacing:-0.746667pt;}
.ws26{word-spacing:-0.704000pt;}
.ws3d{word-spacing:-0.586667pt;}
.ws6{word-spacing:-0.533333pt;}
.ws5a{word-spacing:-0.528000pt;}
.ws2f{word-spacing:-0.293333pt;}
.ws3c{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws27{word-spacing:0.176000pt;}
.ws8{word-spacing:0.192000pt;}
.ws47{word-spacing:0.234667pt;}
.ws9{word-spacing:0.240000pt;}
.ws71{word-spacing:0.528000pt;}
.ws81{word-spacing:0.533333pt;}
.ws2a{word-spacing:0.645333pt;}
.ws38{word-spacing:0.704000pt;}
.ws67{word-spacing:0.821333pt;}
.ws7d{word-spacing:0.880000pt;}
.ws7a{word-spacing:0.997333pt;}
.ws64{word-spacing:1.056000pt;}
.ws82{word-spacing:1.066667pt;}
.ws24{word-spacing:1.114667pt;}
.ws6c{word-spacing:1.173333pt;}
.ws63{word-spacing:1.232000pt;}
.ws25{word-spacing:1.525333pt;}
.ws85{word-spacing:1.653333pt;}
.ws32{word-spacing:1.701333pt;}
.ws86{word-spacing:1.706667pt;}
.ws66{word-spacing:1.936000pt;}
.ws87{word-spacing:1.973333pt;}
.ws88{word-spacing:2.026667pt;}
.ws33{word-spacing:2.346667pt;}
.ws7b{word-spacing:2.405333pt;}
.ws2d{word-spacing:2.464000pt;}
.ws51{word-spacing:2.757333pt;}
.ws6a{word-spacing:2.816000pt;}
.ws53{word-spacing:2.874667pt;}
.ws7{word-spacing:3.024000pt;}
.ws55{word-spacing:3.050667pt;}
.ws17{word-spacing:3.071157pt;}
.ws34{word-spacing:3.168000pt;}
.ws49{word-spacing:3.285333pt;}
.ws22{word-spacing:3.344000pt;}
.ws4c{word-spacing:3.520000pt;}
.ws68{word-spacing:3.696000pt;}
.wsb{word-spacing:3.744000pt;}
.ws3a{word-spacing:3.754667pt;}
.ws58{word-spacing:3.930667pt;}
.ws80{word-spacing:3.946667pt;}
.wse{word-spacing:3.984000pt;}
.ws5{word-spacing:4.176000pt;}
.ws28{word-spacing:4.282667pt;}
.wsc{word-spacing:4.464000pt;}
.ws37{word-spacing:4.634667pt;}
.ws48{word-spacing:4.693333pt;}
.ws3b{word-spacing:4.752000pt;}
.ws5f{word-spacing:4.810667pt;}
.ws75{word-spacing:4.928000pt;}
.ws1c{word-spacing:5.280000pt;}
.ws21{word-spacing:5.338667pt;}
.ws40{word-spacing:5.397333pt;}
.ws5c{word-spacing:5.632000pt;}
.ws12{word-spacing:5.664000pt;}
.ws59{word-spacing:5.866667pt;}
.ws70{word-spacing:5.984000pt;}
.ws6f{word-spacing:6.160000pt;}
.ws1a{word-spacing:6.218667pt;}
.ws72{word-spacing:6.277333pt;}
.ws44{word-spacing:6.336000pt;}
.ws60{word-spacing:6.394667pt;}
.ws1e{word-spacing:6.453333pt;}
.ws1f{word-spacing:6.512000pt;}
.ws41{word-spacing:6.570667pt;}
.ws56{word-spacing:6.688000pt;}
.ws10{word-spacing:6.720000pt;}
.ws77{word-spacing:6.746667pt;}
.wsf{word-spacing:6.768000pt;}
.ws23{word-spacing:6.805333pt;}
.ws78{word-spacing:7.040000pt;}
.ws45{word-spacing:7.450667pt;}
.ws61{word-spacing:7.509333pt;}
.ws73{word-spacing:7.568000pt;}
.ws6b{word-spacing:7.626667pt;}
.ws62{word-spacing:7.920000pt;}
.ws57{word-spacing:8.272000pt;}
.wsd{word-spacing:8.352000pt;}
.ws5e{word-spacing:8.800000pt;}
.wsa{word-spacing:9.120000pt;}
.ws4f{word-spacing:9.386667pt;}
.ws19{word-spacing:9.738667pt;}
.ws7e{word-spacing:10.090667pt;}
.ws7f{word-spacing:10.208000pt;}
.ws39{word-spacing:10.442667pt;}
.ws74{word-spacing:10.677333pt;}
.ws4a{word-spacing:12.672000pt;}
.ws54{word-spacing:12.965333pt;}
.ws6d{word-spacing:14.256000pt;}
.ws2b{word-spacing:14.960000pt;}
.ws42{word-spacing:15.253333pt;}
.ws3e{word-spacing:17.365333pt;}
.ws46{word-spacing:17.600000pt;}
.ws18{word-spacing:29.333333pt;}
._6{margin-left:-8.176000pt;}
._9{margin-left:-6.400000pt;}
._3{margin-left:-5.227040pt;}
._5{margin-left:-3.472000pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._8{width:3.085240pt;}
._4{width:4.224000pt;}
._a{width:5.752220pt;}
._c{width:6.664533pt;}
._10{width:7.761973pt;}
._b{width:8.752973pt;}
._e{width:9.715040pt;}
._11{width:11.094187pt;}
._13{width:12.026667pt;}
._7{width:12.943846pt;}
._12{width:13.845740pt;}
._d{width:15.170040pt;}
._14{width:17.811200pt;}
._f{width:29.333333pt;}
.fs1{font-size:32.000000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs5{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.fs4{font-size:106.666667pt;}
.fs8{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y34{bottom:15.985200pt;}
.y33{bottom:23.289067pt;}
.y35{bottom:27.212533pt;}
.y2{bottom:38.177600pt;}
.y32{bottom:41.955733pt;}
.ya{bottom:47.999467pt;}
.y36{bottom:49.145200pt;}
.y31{bottom:60.622400pt;}
.y9{bottom:62.399467pt;}
.y8{bottom:76.799467pt;}
.y7{bottom:94.979467pt;}
.y2e{bottom:152.599467pt;}
.yfd{bottom:153.635733pt;}
.yd0{bottom:154.147467pt;}
.y80{bottom:154.162133pt;}
.yca{bottom:154.176800pt;}
.ye6{bottom:154.191467pt;}
.yc7{bottom:154.692800pt;}
.y2d{bottom:171.271467pt;}
.yfc{bottom:172.302400pt;}
.yb9{bottom:174.138133pt;}
.ycf{bottom:174.152800pt;}
.y7f{bottom:174.167467pt;}
.y9a{bottom:174.182133pt;}
.ye5{bottom:174.196800pt;}
.yc6{bottom:174.698133pt;}
.y2c{bottom:185.935467pt;}
.yb8{bottom:194.143467pt;}
.yce{bottom:194.158133pt;}
.ya2{bottom:194.172800pt;}
.y99{bottom:194.187467pt;}
.y59{bottom:194.687467pt;}
.yfb{bottom:200.302400pt;}
.y2b{bottom:200.599467pt;}
.yb7{bottom:214.148800pt;}
.y7e{bottom:214.163467pt;}
.ya1{bottom:214.178133pt;}
.y98{bottom:214.192800pt;}
.y58{bottom:214.692800pt;}
.yc5{bottom:214.698133pt;}
.y2a{bottom:215.263467pt;}
.yfa{bottom:218.969067pt;}
.y29{bottom:229.927467pt;}
.yb6{bottom:234.154133pt;}
.y7d{bottom:234.168800pt;}
.ya0{bottom:234.183467pt;}
.y97{bottom:234.198133pt;}
.y57{bottom:234.698133pt;}
.y28{bottom:244.591467pt;}
.yf9{bottom:246.969067pt;}
.yb5{bottom:254.159467pt;}
.y7c{bottom:254.174133pt;}
.y9f{bottom:254.188800pt;}
.ye4{bottom:254.203467pt;}
.y27{bottom:259.255467pt;}
.y26{bottom:273.919467pt;}
.yb4{bottom:274.164800pt;}
.y7b{bottom:274.179467pt;}
.y96{bottom:274.194133pt;}
.ye3{bottom:274.208800pt;}
.y56{bottom:274.698133pt;}
.yf8{bottom:274.969067pt;}
.yc4{bottom:287.908800pt;}
.yb3{bottom:294.170133pt;}
.y7a{bottom:294.184800pt;}
.y95{bottom:294.199467pt;}
.ye2{bottom:294.214133pt;}
.yf7{bottom:302.969067pt;}
.y25{bottom:303.919467pt;}
.yc3{bottom:307.914133pt;}
.yb2{bottom:314.175467pt;}
.y79{bottom:314.190133pt;}
.y94{bottom:314.204800pt;}
.ye1{bottom:314.219467pt;}
.yf6{bottom:321.635733pt;}
.y24{bottom:322.591467pt;}
.yc2{bottom:327.919467pt;}
.yb1{bottom:334.180800pt;}
.yc9{bottom:334.195467pt;}
.y93{bottom:334.210133pt;}
.ye0{bottom:334.224800pt;}
.y23{bottom:337.927467pt;}
.y55{bottom:347.924800pt;}
.yf5{bottom:349.635733pt;}
.y22{bottom:353.263467pt;}
.y78{bottom:354.186133pt;}
.yc8{bottom:354.200800pt;}
.y92{bottom:354.215467pt;}
.y54{bottom:367.930133pt;}
.y21{bottom:368.599467pt;}
.y77{bottom:374.191467pt;}
.y9e{bottom:374.206133pt;}
.y91{bottom:374.220800pt;}
.yf4{bottom:377.635733pt;}
.y20{bottom:383.935467pt;}
.y53{bottom:387.935467pt;}
.y76{bottom:394.196800pt;}
.y9d{bottom:394.211467pt;}
.y90{bottom:394.226133pt;}
.y1f{bottom:399.271467pt;}
.yf3{bottom:405.635733pt;}
.y75{bottom:414.202133pt;}
.y9c{bottom:414.216800pt;}
.y8f{bottom:414.231467pt;}
.y1e{bottom:414.607467pt;}
.yf2{bottom:424.302400pt;}
.y52{bottom:427.931467pt;}
.y1d{bottom:429.943467pt;}
.yb0{bottom:434.192800pt;}
.y74{bottom:434.207467pt;}
.y9b{bottom:434.222133pt;}
.y8e{bottom:434.236800pt;}
.y51{bottom:447.936800pt;}
.y1c{bottom:448.615467pt;}
.yf1{bottom:452.302400pt;}
.yaf{bottom:454.198133pt;}
.y73{bottom:454.212800pt;}
.ydf{bottom:454.242133pt;}
.y1b{bottom:467.287467pt;}
.yc1{bottom:467.942133pt;}
.yae{bottom:474.203467pt;}
.y72{bottom:474.218133pt;}
.y8d{bottom:474.232800pt;}
.yde{bottom:474.247467pt;}
.yf0{bottom:480.302400pt;}
.y1a{bottom:481.951467pt;}
.y50{bottom:487.932800pt;}
.yc0{bottom:487.947467pt;}
.yad{bottom:494.208800pt;}
.y71{bottom:494.223467pt;}
.y8c{bottom:494.238133pt;}
.y19{bottom:496.615467pt;}
.y4f{bottom:507.938133pt;}
.ybf{bottom:507.952800pt;}
.yef{bottom:508.302400pt;}
.y18{bottom:511.279467pt;}
.yac{bottom:514.214133pt;}
.y70{bottom:514.228800pt;}
.y8b{bottom:514.243467pt;}
.y17{bottom:525.943467pt;}
.yee{bottom:526.969067pt;}
.y4e{bottom:527.943467pt;}
.ybe{bottom:527.958133pt;}
.yab{bottom:534.219467pt;}
.y6f{bottom:534.234133pt;}
.ydd{bottom:534.248800pt;}
.y16{bottom:540.607467pt;}
.y4d{bottom:547.948800pt;}
.ybd{bottom:547.963467pt;}
.yaa{bottom:554.224800pt;}
.y8a{bottom:554.239467pt;}
.ydc{bottom:554.254133pt;}
.yed{bottom:554.969067pt;}
.y15{bottom:555.271467pt;}
.y4c{bottom:567.954133pt;}
.y14{bottom:569.935467pt;}
.yec{bottom:573.635733pt;}
.y6e{bottom:574.230133pt;}
.y89{bottom:574.244800pt;}
.ydb{bottom:574.259467pt;}
.y4b{bottom:587.959467pt;}
.y6d{bottom:594.235467pt;}
.y88{bottom:594.250133pt;}
.yda{bottom:594.264800pt;}
.yeb{bottom:601.635733pt;}
.y4a{bottom:607.964800pt;}
.y6c{bottom:614.240800pt;}
.y87{bottom:614.255467pt;}
.yd9{bottom:614.270133pt;}
.y13{bottom:618.160667pt;}
.y49{bottom:627.970133pt;}
.yea{bottom:629.635733pt;}
.y6b{bottom:634.246133pt;}
.y12{bottom:636.827333pt;}
.y48{bottom:647.975467pt;}
.ye9{bottom:648.302400pt;}
.ya9{bottom:654.236800pt;}
.y6a{bottom:654.251467pt;}
.yd8{bottom:654.266133pt;}
.y11{bottom:655.494000pt;}
.y30{bottom:659.323467pt;}
.y47{bottom:667.980800pt;}
.y10{bottom:674.160667pt;}
.ya8{bottom:674.242133pt;}
.y69{bottom:674.256800pt;}
.yd7{bottom:674.271467pt;}
.y2f{bottom:676.651467pt;}
.ye8{bottom:686.969067pt;}
.y46{bottom:687.986133pt;}
.ya7{bottom:694.247467pt;}
.y68{bottom:694.262133pt;}
.yd6{bottom:694.276800pt;}
.ya6{bottom:714.252800pt;}
.y86{bottom:714.267467pt;}
.yd5{bottom:714.282133pt;}
.y45{bottom:727.982133pt;}
.y67{bottom:734.258133pt;}
.y85{bottom:734.272800pt;}
.yd4{bottom:734.287467pt;}
.y44{bottom:747.987467pt;}
.y66{bottom:754.263467pt;}
.ye7{bottom:754.278133pt;}
.yf{bottom:767.150667pt;}
.y43{bottom:767.992800pt;}
.y65{bottom:774.268800pt;}
.yd3{bottom:774.283467pt;}
.ybc{bottom:787.998133pt;}
.ye{bottom:791.150667pt;}
.ycd{bottom:794.259467pt;}
.y64{bottom:794.274133pt;}
.yd2{bottom:794.288800pt;}
.y42{bottom:807.988800pt;}
.ybb{bottom:808.003467pt;}
.ycc{bottom:814.264800pt;}
.y63{bottom:814.279467pt;}
.yd1{bottom:814.294133pt;}
.yd{bottom:826.489333pt;}
.y41{bottom:827.994133pt;}
.yba{bottom:828.008800pt;}
.ycb{bottom:834.270133pt;}
.y62{bottom:834.284800pt;}
.y40{bottom:847.999467pt;}
.ya5{bottom:854.275467pt;}
.y61{bottom:854.290133pt;}
.yc{bottom:857.156000pt;}
.y3f{bottom:868.004800pt;}
.ya4{bottom:874.280800pt;}
.y60{bottom:874.295467pt;}
.yb{bottom:887.822667pt;}
.y3e{bottom:888.010133pt;}
.ya3{bottom:894.286133pt;}
.y84{bottom:894.300800pt;}
.y3d{bottom:908.015467pt;}
.y5f{bottom:914.291467pt;}
.y83{bottom:914.306133pt;}
.y3c{bottom:928.020800pt;}
.y5e{bottom:934.296800pt;}
.y82{bottom:934.311467pt;}
.y3b{bottom:948.026133pt;}
.y5d{bottom:954.302133pt;}
.y81{bottom:954.316800pt;}
.y3a{bottom:968.031467pt;}
.y5c{bottom:974.307467pt;}
.y6{bottom:977.126533pt;}
.y5b{bottom:994.312800pt;}
.y5{bottom:1005.540000pt;}
.y39{bottom:1008.031467pt;}
.y5a{bottom:1014.318133pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.y37{bottom:1053.625200pt;}
.y38{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.h6{height:50.400000pt;}
.h2{height:55.488000pt;}
.h9{height:56.000000pt;}
.h3{height:57.198000pt;}
.h8{height:60.000000pt;}
.h5{height:61.600000pt;}
.ha{height:64.000000pt;}
.hc{height:80.000000pt;}
.h7{height:112.000000pt;}
.hb{height:161.235760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:314.870667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:18.897600pt;}
.xc{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xf{left:94.488133pt;}
.x2{left:138.580000pt;}
.x3{left:186.580000pt;}
.xa{left:188.976400pt;}
.x6{left:196.850400pt;}
.x7{left:198.558267pt;}
.x9{left:210.097067pt;}
.x8{left:212.560667pt;}
.xd{left:724.913333pt;}
.x10{left:732.024533pt;}
.xe{left:733.177600pt;}
}




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