
    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_e9afe2b563cf2388a49297ae.woff')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_ad3e2e4a5e4a90bc386098a3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.722000;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_b0142bf7fdbd072ab7fdb46f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_0a73431a95747c81ee75c538.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_732fe528e3b7025f0f13a6b4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_e61726f137a05124109c8566.woff')format("woff");}.ff6{font-family:ff6;line-height:0.905762;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_5cb1651e4dcf0e309a44081b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.901855;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_93711d0c2e4e790963e52acb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_10be38857ca4b128b2ef046c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_d62ff3ae8f4b74add4814014.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_68cc4160bd6dbcc752a541be.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_055b878268db4281ac1f6f8d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.675781;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_fd538fcd3d6c9c54676e81f1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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_0398c95665b5c70da0047c10.woff')format("woff");}.ffe{font-family:ffe;line-height:0.902832;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_f68410dddd104f982348c472.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;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_d77a6b23bfe459e67ab7dc07.woff')format("woff");}.ff10{font-family:ff10;line-height:0.901855;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_6845e3bbb0c08d37342b2801.woff')format("woff");}.ff11{font-family:ff11;line-height:0.904297;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_96ab904b1adb06a2d627ee65.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_df3546b7bea1e42f80072e28.woff')format("woff");}.ff13{font-family:ff13;line-height:0.675781;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_e4e86dbcb7ffd0aefaf40dbb.woff')format("woff");}.ff14{font-family:ff14;line-height:0.675781;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_495db0f3432ef5dda6f330cf.woff')format("woff");}.ff15{font-family:ff15;line-height:0.902832;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:ff16;src:url('chunks/assets/font_3b50616048c0cd8afb105cd5.woff')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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:ff17;src:url('chunks/assets/font_b7a9c23892b312d9be14ace3.woff')format("woff");}.ff17{font-family:ff17;line-height:0.901855;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:ff18;src:url('chunks/assets/font_cadc119b6abccdd3d9a5afe3.woff')format("woff");}.ff18{font-family:ff18;line-height:0.904297;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:ff19;src:url('chunks/assets/font_651382ec96aaf9413c5160b7.woff')format("woff");}.ff19{font-family:ff19;line-height:0.666504;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:ff1a;src:url('chunks/assets/font_b9eff9512589804c90daacd7.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.675781;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:ff1b;src:url('chunks/assets/font_54bea61b9a9ff41ae08c3a2b.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;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);}
.v6{vertical-align:-243.657000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.961200px;}
.v5{vertical-align:270.000600px;}
.v3{vertical-align:275.685600px;}
.v1{vertical-align:580.221600px;}
.v2{vertical-align:719.362800px;}
.lsd{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.014400px;}
.ls7{letter-spacing:-0.013200px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.014400px;}
.lsc{letter-spacing:0.036000px;}
.ls9{letter-spacing:31.147800px;}
.ls1{letter-spacing:72.999300px;}
.ls2{letter-spacing:75.898200px;}
.ls5{letter-spacing:1480.488960px;}
.ls3{letter-spacing:1897.577400px;}
.ls4{letter-spacing:2130.631500px;}
.ls6{letter-spacing:2168.671920px;}
.ls8{letter-spacing:2562.399060px;}
.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;}
}
.ws2{word-spacing:-27.800556px;}
.ws3{word-spacing:-26.688000px;}
.ws6{word-spacing:-23.352000px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.985600px;}
.ws9{word-spacing:-16.500000px;}
.ws5{word-spacing:-15.000000px;}
.ws1{word-spacing:-0.100002px;}
.wsa{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:1747.731000px;}
._e{margin-left:-15.087840px;}
._1{margin-left:-9.324000px;}
._3{margin-left:-7.905120px;}
._2{margin-left:-6.806082px;}
._b{margin-left:-5.706000px;}
._10{margin-left:-4.586340px;}
._4{margin-left:-3.276000px;}
._0{margin-left:-1.728000px;}
._7{width:1.732560px;}
._c{width:2.861760px;}
._d{width:4.921200px;}
._a{width:6.502800px;}
._9{width:7.582800px;}
._5{width:8.803200px;}
._11{width:10.214400px;}
._6{width:14.137200px;}
._12{width:25.897200px;}
._8{width:26.972400px;}
._f{width:31.147800px;}
.fca{color:rgb(54,91,157);}
.fc9{color:rgb(90,138,57);}
.fcb{color:rgb(255,38,0);}
.fc6{color:transparent;}
.fc5{color:rgb(190,100,39);}
.fc8{color:rgb(83,83,83);}
.fc7{color:rgb(116,116,116);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(136,136,136);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs8{font-size:100.002000px;}
.fsf{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.fsd{font-size:114.000000px;}
.fs1{font-size:126.000000px;}
.fsb{font-size:138.000000px;}
.fs0{font-size:156.000000px;}
.fs4{font-size:179.580000px;}
.fs10{font-size:180.000000px;}
.fs7{font-size:206.400000px;}
.fs9{font-size:1248.000000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:9.525000px;}
.y7a{bottom:9.900000px;}
.y95{bottom:12.750000px;}
.y5e{bottom:13.056000px;}
.yb1{bottom:29.025000px;}
.y9e{bottom:29.025030px;}
.ya2{bottom:30.899925px;}
.y79{bottom:30.900000px;}
.y11{bottom:32.849490px;}
.y5d{bottom:41.556000px;}
.y7f{bottom:42.204750px;}
.yb0{bottom:48.524925px;}
.yc0{bottom:48.524940px;}
.y9d{bottom:48.525030px;}
.ya1{bottom:51.899925px;}
.y78{bottom:51.900000px;}
.y92{bottom:51.900060px;}
.yaf{bottom:68.024925px;}
.ybf{bottom:68.024940px;}
.y9c{bottom:68.025030px;}
.y3d{bottom:71.603190px;}
.y77{bottom:72.899925px;}
.y7d{bottom:72.900000px;}
.y91{bottom:72.900060px;}
.y26{bottom:75.416895px;}
.y7e{bottom:75.809235px;}
.y80{bottom:76.719975px;}
.y25{bottom:78.416895px;}
.y70{bottom:79.775325px;}
.y35{bottom:85.507545px;}
.yae{bottom:87.524925px;}
.ybe{bottom:87.524940px;}
.y9b{bottom:87.525030px;}
.y76{bottom:93.899925px;}
.y7c{bottom:93.900000px;}
.y90{bottom:93.900060px;}
.y3c{bottom:95.603190px;}
.y24{bottom:101.216910px;}
.yad{bottom:107.024925px;}
.ybd{bottom:107.024940px;}
.y9a{bottom:107.025030px;}
.y82{bottom:107.178240px;}
.yb2{bottom:107.305260px;}
.y34{bottom:112.507545px;}
.y75{bottom:114.899925px;}
.y8f{bottom:114.900060px;}
.yb3{bottom:117.875160px;}
.ya3{bottom:117.875175px;}
.y5b{bottom:118.180620px;}
.y3b{bottom:119.603190px;}
.y47{bottom:121.446600px;}
.ya0{bottom:121.775325px;}
.yac{bottom:126.524925px;}
.ybc{bottom:126.524940px;}
.y99{bottom:126.525030px;}
.y49{bottom:131.153715px;}
.y97{bottom:135.694770px;}
.y74{bottom:135.899925px;}
.y8e{bottom:135.900060px;}
.y33{bottom:139.507545px;}
.y3a{bottom:143.603190px;}
.y46{bottom:145.446600px;}
.yab{bottom:146.024925px;}
.ybb{bottom:146.024940px;}
.y98{bottom:146.025030px;}
.y5a{bottom:146.680620px;}
.y73{bottom:156.899925px;}
.y8d{bottom:156.900060px;}
.y6a{bottom:160.119900px;}
.yaa{bottom:165.524925px;}
.yba{bottom:165.524940px;}
.y32{bottom:166.507500px;}
.y39{bottom:167.603250px;}
.y7b{bottom:169.267200px;}
.y45{bottom:169.446600px;}
.y59{bottom:175.180650px;}
.y72{bottom:177.899925px;}
.y8c{bottom:177.900060px;}
.y69{bottom:181.119900px;}
.ya9{bottom:185.024925px;}
.yb9{bottom:185.024940px;}
.y1d{bottom:191.266500px;}
.y38{bottom:191.708250px;}
.y44{bottom:193.446600px;}
.y31{bottom:193.627650px;}
.y71{bottom:198.899925px;}
.y8b{bottom:198.900060px;}
.y94{bottom:199.828200px;}
.y68{bottom:202.119900px;}
.ya8{bottom:204.524925px;}
.yb8{bottom:204.524940px;}
.y43{bottom:217.446600px;}
.y8a{bottom:219.900060px;}
.y1c{bottom:221.266500px;}
.ya7{bottom:224.024925px;}
.yb7{bottom:224.024940px;}
.y96{bottom:230.428200px;}
.y58{bottom:232.180650px;}
.y37{bottom:233.211900px;}
.yc2{bottom:233.560500px;}
.y89{bottom:240.900060px;}
.y42{bottom:241.551750px;}
.ya6{bottom:243.524925px;}
.yb6{bottom:243.524940px;}
.y23{bottom:248.945700px;}
.y1b{bottom:251.266500px;}
.y30{bottom:254.333250px;}
.y57{bottom:260.560500px;}
.y88{bottom:261.900060px;}
.ya5{bottom:263.024925px;}
.yb5{bottom:263.024940px;}
.y41{bottom:266.946600px;}
.ya4{bottom:282.524925px;}
.yb4{bottom:282.524940px;}
.y2f{bottom:282.833250px;}
.y87{bottom:282.900060px;}
.y1e{bottom:284.372550px;}
.y56{bottom:287.560500px;}
.y40{bottom:290.946600px;}
.y64{bottom:294.432600px;}
.y86{bottom:303.900060px;}
.y67{bottom:304.932600px;}
.y22{bottom:309.427950px;}
.y2e{bottom:311.213250px;}
.y1a{bottom:311.266500px;}
.y55{bottom:314.560500px;}
.y63{bottom:315.432600px;}
.y85{bottom:324.900060px;}
.y66{bottom:325.932600px;}
.yca{bottom:334.282350px;}
.y62{bottom:336.432600px;}
.y81{bottom:337.498500px;}
.y2d{bottom:338.213250px;}
.y21{bottom:339.427950px;}
.y19{bottom:341.266500px;}
.y48{bottom:341.403000px;}
.y54{bottom:341.680650px;}
.y4b{bottom:343.714350px;}
.y84{bottom:345.900060px;}
.y65{bottom:346.932600px;}
.yc1{bottom:357.432600px;}
.y36{bottom:359.865000px;}
.y3f{bottom:361.286250px;}
.y2c{bottom:365.213250px;}
.y83{bottom:366.900060px;}
.y20{bottom:369.427950px;}
.y53{bottom:370.060500px;}
.y18{bottom:371.266500px;}
.y6f{bottom:376.286400px;}
.yc9{bottom:385.282350px;}
.y52{bottom:397.060500px;}
.y6e{bottom:397.286400px;}
.y1f{bottom:399.427950px;}
.y17{bottom:401.341650px;}
.yd{bottom:413.986950px;}
.y6d{bottom:418.286400px;}
.y61{bottom:418.346850px;}
.y51{bottom:424.180650px;}
.y12{bottom:428.786400px;}
.yc8{bottom:436.282350px;}
.y6c{bottom:439.286400px;}
.yc{bottom:439.486950px;}
.y50{bottom:452.680650px;}
.y6b{bottom:460.286400px;}
.y16{bottom:461.516850px;}
.y2b{bottom:462.878850px;}
.yb{bottom:464.986950px;}
.y5c{bottom:469.725450px;}
.y4f{bottom:481.060500px;}
.yc7{bottom:487.282350px;}
.y10{bottom:489.187500px;}
.ya{bottom:490.486950px;}
.y15{bottom:491.641950px;}
.y2a{bottom:497.378850px;}
.y93{bottom:503.235900px;}
.y4e{bottom:508.060500px;}
.y9{bottom:515.986950px;}
.y14{bottom:521.641950px;}
.y29{bottom:531.878850px;}
.y4d{bottom:535.060500px;}
.yf{bottom:535.234350px;}
.yc6{bottom:538.282350px;}
.y8{bottom:541.486950px;}
.y4a{bottom:561.823350px;}
.y28{bottom:562.628850px;}
.y7{bottom:566.986950px;}
.y60{bottom:569.067150px;}
.ye{bottom:581.281200px;}
.yc5{bottom:589.282350px;}
.y6{bottom:592.486950px;}
.y27{bottom:600.878850px;}
.y4c{bottom:605.405550px;}
.y5f{bottom:611.067150px;}
.y5{bottom:617.986950px;}
.y3e{bottom:621.206100px;}
.yc4{bottom:640.282350px;}
.y4{bottom:643.486950px;}
.y3{bottom:668.986950px;}
.yc3{bottom:691.282350px;}
.y2{bottom:694.486950px;}
.y13{bottom:713.979750px;}
.y1{bottom:719.986950px;}
.h1c{height:31.800000px;}
.h10{height:37.494141px;}
.h9{height:41.923828px;}
.h1d{height:42.750000px;}
.h8{height:43.989258px;}
.h20{height:45.826172px;}
.h15{height:49.359375px;}
.h16{height:49.992188px;}
.h1a{height:52.800000px;}
.h13{height:58.207294px;}
.h5{height:60.648000px;}
.h4{height:61.404000px;}
.h6{height:69.312000px;}
.h3{height:70.176000px;}
.h1e{height:70.822266px;}
.h14{height:71.304015px;}
.hb{height:73.101462px;}
.hc{height:73.301262px;}
.h19{height:73.800000px;}
.he{height:74.039062px;}
.h12{height:78.152344px;}
.h11{height:79.154297px;}
.h2{height:90.972000px;}
.hf{height:95.818359px;}
.h1{height:114.036000px;}
.h18{height:115.800000px;}
.h7{height:130.739150px;}
.h23{height:131.044922px;}
.ha{height:150.264844px;}
.h1f{height:166.800000px;}
.h21{height:178.800000px;}
.h17{height:220.800000px;}
.h22{height:303.300000px;}
.h1b{height:388.800000px;}
.h0{height:807.000000px;}
.hd{height:866.531250px;}
.w7{width:162.191400px;}
.w9{width:240.714600px;}
.w8{width:242.664600px;}
.wa{width:242.769300px;}
.w5{width:250.281900px;}
.w6{width:298.816200px;}
.w3{width:345.376500px;}
.w2{width:451.606200px;}
.w4{width:465.071850px;}
.w1{width:664.245900px;}
.w0{width:1435.500000px;}
.x0{left:0.000000px;}
.x37{left:5.400000px;}
.x46{left:6.903600px;}
.x47{left:9.977250px;}
.x43{left:11.503950px;}
.x45{left:14.263350px;}
.x38{left:19.486965px;}
.x3f{left:21.579750px;}
.x44{left:24.571800px;}
.x26{left:37.037085px;}
.x41{left:39.042450px;}
.x2a{left:49.522935px;}
.x1{left:55.557360px;}
.x8{left:59.195055px;}
.x7{left:70.793445px;}
.x2d{left:73.025985px;}
.x36{left:83.118795px;}
.x9{left:86.195055px;}
.x3c{left:91.052535px;}
.x28{left:100.718265px;}
.x21{left:111.066420px;}
.x13{left:120.576525px;}
.xf{left:178.840050px;}
.x2b{left:289.258650px;}
.x29{left:292.354935px;}
.x2c{left:306.997050px;}
.x1a{left:309.115650px;}
.x22{left:317.037000px;}
.x23{left:323.863200px;}
.x19{left:328.131150px;}
.x18{left:337.297650px;}
.x35{left:339.762000px;}
.x17{left:341.970150px;}
.x48{left:363.991950px;}
.x14{left:372.807750px;}
.x20{left:375.426450px;}
.x30{left:382.262100px;}
.x16{left:391.362150px;}
.x15{left:454.572150px;}
.x3a{left:456.934800px;}
.x2{left:591.418650px;}
.x3{left:603.442500px;}
.x32{left:614.407650px;}
.x3e{left:617.777550px;}
.x34{left:639.452550px;}
.x4{left:640.511550px;}
.x31{left:650.594400px;}
.x4a{left:664.010850px;}
.x33{left:706.291200px;}
.xa{left:739.020150px;}
.x49{left:772.092150px;}
.x12{left:801.845400px;}
.x6{left:809.234400px;}
.x1e{left:820.620300px;}
.x1d{left:822.583800px;}
.x1f{left:835.404300px;}
.x1c{left:850.975800px;}
.x27{left:856.689300px;}
.x42{left:858.868800px;}
.x2e{left:869.625750px;}
.x2f{left:883.712700px;}
.xc{left:890.656800px;}
.xb{left:895.469400px;}
.xd{left:917.232300px;}
.xe{left:918.857250px;}
.x1b{left:941.622300px;}
.x39{left:976.478400px;}
.x11{left:987.056400px;}
.x10{left:988.556400px;}
.x24{left:997.089000px;}
.x3b{left:1071.452550px;}
.x40{left:1075.261200px;}
.x3d{left:1199.215200px;}
.x25{left:1315.382250px;}
.x5{left:1323.745050px;}
@media print{
.v6{vertical-align:-216.584000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.521067pt;}
.v5{vertical-align:240.000533pt;}
.v3{vertical-align:245.053867pt;}
.v1{vertical-align:515.752533pt;}
.v2{vertical-align:639.433600pt;}
.lsd{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:-0.011733pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.012800pt;}
.lsc{letter-spacing:0.032000pt;}
.ls9{letter-spacing:27.686933pt;}
.ls1{letter-spacing:64.888267pt;}
.ls2{letter-spacing:67.465067pt;}
.ls5{letter-spacing:1315.990187pt;}
.ls3{letter-spacing:1686.735467pt;}
.ls4{letter-spacing:1893.894667pt;}
.ls6{letter-spacing:1927.708373pt;}
.ls8{letter-spacing:2277.688053pt;}
.ws2{word-spacing:-24.711605pt;}
.ws3{word-spacing:-23.722667pt;}
.ws6{word-spacing:-20.757333pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.987200pt;}
.ws9{word-spacing:-14.666667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws1{word-spacing:-0.088891pt;}
.wsa{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:1553.538667pt;}
._e{margin-left:-13.411413pt;}
._1{margin-left:-8.288000pt;}
._3{margin-left:-7.026773pt;}
._2{margin-left:-6.049851pt;}
._b{margin-left:-5.072000pt;}
._10{margin-left:-4.076747pt;}
._4{margin-left:-2.912000pt;}
._0{margin-left:-1.536000pt;}
._7{width:1.540053pt;}
._c{width:2.543787pt;}
._d{width:4.374400pt;}
._a{width:5.780267pt;}
._9{width:6.740267pt;}
._5{width:7.825067pt;}
._11{width:9.079467pt;}
._6{width:12.566400pt;}
._12{width:23.019733pt;}
._8{width:23.975467pt;}
._f{width:27.686933pt;}
.fsc{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs8{font-size:88.890667pt;}
.fsf{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.fsd{font-size:101.333333pt;}
.fs1{font-size:112.000000pt;}
.fsb{font-size:122.666667pt;}
.fs0{font-size:138.666667pt;}
.fs4{font-size:159.626667pt;}
.fs10{font-size:160.000000pt;}
.fs7{font-size:183.466667pt;}
.fs9{font-size:1109.333333pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:8.466667pt;}
.y7a{bottom:8.800000pt;}
.y95{bottom:11.333333pt;}
.y5e{bottom:11.605333pt;}
.yb1{bottom:25.800000pt;}
.y9e{bottom:25.800027pt;}
.ya2{bottom:27.466600pt;}
.y79{bottom:27.466667pt;}
.y11{bottom:29.199547pt;}
.y5d{bottom:36.938667pt;}
.y7f{bottom:37.515333pt;}
.yb0{bottom:43.133267pt;}
.yc0{bottom:43.133280pt;}
.y9d{bottom:43.133360pt;}
.ya1{bottom:46.133267pt;}
.y78{bottom:46.133333pt;}
.y92{bottom:46.133387pt;}
.yaf{bottom:60.466600pt;}
.ybf{bottom:60.466613pt;}
.y9c{bottom:60.466693pt;}
.y3d{bottom:63.647280pt;}
.y77{bottom:64.799933pt;}
.y7d{bottom:64.800000pt;}
.y91{bottom:64.800053pt;}
.y26{bottom:67.037240pt;}
.y7e{bottom:67.385987pt;}
.y80{bottom:68.195533pt;}
.y25{bottom:69.703907pt;}
.y70{bottom:70.911400pt;}
.y35{bottom:76.006707pt;}
.yae{bottom:77.799933pt;}
.ybe{bottom:77.799947pt;}
.y9b{bottom:77.800027pt;}
.y76{bottom:83.466600pt;}
.y7c{bottom:83.466667pt;}
.y90{bottom:83.466720pt;}
.y3c{bottom:84.980613pt;}
.y24{bottom:89.970587pt;}
.yad{bottom:95.133267pt;}
.ybd{bottom:95.133280pt;}
.y9a{bottom:95.133360pt;}
.y82{bottom:95.269547pt;}
.yb2{bottom:95.382453pt;}
.y34{bottom:100.006707pt;}
.y75{bottom:102.133267pt;}
.y8f{bottom:102.133387pt;}
.yb3{bottom:104.777920pt;}
.ya3{bottom:104.777933pt;}
.y5b{bottom:105.049440pt;}
.y3b{bottom:106.313947pt;}
.y47{bottom:107.952533pt;}
.ya0{bottom:108.244733pt;}
.yac{bottom:112.466600pt;}
.ybc{bottom:112.466613pt;}
.y99{bottom:112.466693pt;}
.y49{bottom:116.581080pt;}
.y97{bottom:120.617573pt;}
.y74{bottom:120.799933pt;}
.y8e{bottom:120.800053pt;}
.y33{bottom:124.006707pt;}
.y3a{bottom:127.647280pt;}
.y46{bottom:129.285867pt;}
.yab{bottom:129.799933pt;}
.ybb{bottom:129.799947pt;}
.y98{bottom:129.800027pt;}
.y5a{bottom:130.382773pt;}
.y73{bottom:139.466600pt;}
.y8d{bottom:139.466720pt;}
.y6a{bottom:142.328800pt;}
.yaa{bottom:147.133267pt;}
.yba{bottom:147.133280pt;}
.y32{bottom:148.006667pt;}
.y39{bottom:148.980667pt;}
.y7b{bottom:150.459733pt;}
.y45{bottom:150.619200pt;}
.y59{bottom:155.716133pt;}
.y72{bottom:158.133267pt;}
.y8c{bottom:158.133387pt;}
.y69{bottom:160.995467pt;}
.ya9{bottom:164.466600pt;}
.yb9{bottom:164.466613pt;}
.y1d{bottom:170.014667pt;}
.y38{bottom:170.407333pt;}
.y44{bottom:171.952533pt;}
.y31{bottom:172.113467pt;}
.y71{bottom:176.799933pt;}
.y8b{bottom:176.800053pt;}
.y94{bottom:177.625067pt;}
.y68{bottom:179.662133pt;}
.ya8{bottom:181.799933pt;}
.yb8{bottom:181.799947pt;}
.y43{bottom:193.285867pt;}
.y8a{bottom:195.466720pt;}
.y1c{bottom:196.681333pt;}
.ya7{bottom:199.133267pt;}
.yb7{bottom:199.133280pt;}
.y96{bottom:204.825067pt;}
.y58{bottom:206.382800pt;}
.y37{bottom:207.299467pt;}
.yc2{bottom:207.609333pt;}
.y89{bottom:214.133387pt;}
.y42{bottom:214.712667pt;}
.ya6{bottom:216.466600pt;}
.yb6{bottom:216.466613pt;}
.y23{bottom:221.285067pt;}
.y1b{bottom:223.348000pt;}
.y30{bottom:226.074000pt;}
.y57{bottom:231.609333pt;}
.y88{bottom:232.800053pt;}
.ya5{bottom:233.799933pt;}
.yb5{bottom:233.799947pt;}
.y41{bottom:237.285867pt;}
.ya4{bottom:251.133267pt;}
.yb4{bottom:251.133280pt;}
.y2f{bottom:251.407333pt;}
.y87{bottom:251.466720pt;}
.y1e{bottom:252.775600pt;}
.y56{bottom:255.609333pt;}
.y40{bottom:258.619200pt;}
.y64{bottom:261.717867pt;}
.y86{bottom:270.133387pt;}
.y67{bottom:271.051200pt;}
.y22{bottom:275.047067pt;}
.y2e{bottom:276.634000pt;}
.y1a{bottom:276.681333pt;}
.y55{bottom:279.609333pt;}
.y63{bottom:280.384533pt;}
.y85{bottom:288.800053pt;}
.y66{bottom:289.717867pt;}
.yca{bottom:297.139867pt;}
.y62{bottom:299.051200pt;}
.y81{bottom:299.998667pt;}
.y2d{bottom:300.634000pt;}
.y21{bottom:301.713733pt;}
.y19{bottom:303.348000pt;}
.y48{bottom:303.469333pt;}
.y54{bottom:303.716133pt;}
.y4b{bottom:305.523867pt;}
.y84{bottom:307.466720pt;}
.y65{bottom:308.384533pt;}
.yc1{bottom:317.717867pt;}
.y36{bottom:319.880000pt;}
.y3f{bottom:321.143333pt;}
.y2c{bottom:324.634000pt;}
.y83{bottom:326.133387pt;}
.y20{bottom:328.380400pt;}
.y53{bottom:328.942667pt;}
.y18{bottom:330.014667pt;}
.y6f{bottom:334.476800pt;}
.yc9{bottom:342.473200pt;}
.y52{bottom:352.942667pt;}
.y6e{bottom:353.143467pt;}
.y1f{bottom:355.047067pt;}
.y17{bottom:356.748133pt;}
.yd{bottom:367.988400pt;}
.y6d{bottom:371.810133pt;}
.y61{bottom:371.863867pt;}
.y51{bottom:377.049467pt;}
.y12{bottom:381.143467pt;}
.yc8{bottom:387.806533pt;}
.y6c{bottom:390.476800pt;}
.yc{bottom:390.655067pt;}
.y50{bottom:402.382800pt;}
.y6b{bottom:409.143467pt;}
.y16{bottom:410.237200pt;}
.y2b{bottom:411.447867pt;}
.yb{bottom:413.321733pt;}
.y5c{bottom:417.533733pt;}
.y4f{bottom:427.609333pt;}
.yc7{bottom:433.139867pt;}
.y10{bottom:434.833333pt;}
.ya{bottom:435.988400pt;}
.y15{bottom:437.015067pt;}
.y2a{bottom:442.114533pt;}
.y93{bottom:447.320800pt;}
.y4e{bottom:451.609333pt;}
.y9{bottom:458.655067pt;}
.y14{bottom:463.681733pt;}
.y29{bottom:472.781200pt;}
.y4d{bottom:475.609333pt;}
.yf{bottom:475.763867pt;}
.yc6{bottom:478.473200pt;}
.y8{bottom:481.321733pt;}
.y4a{bottom:499.398533pt;}
.y28{bottom:500.114533pt;}
.y7{bottom:503.988400pt;}
.y60{bottom:505.837467pt;}
.ye{bottom:516.694400pt;}
.yc5{bottom:523.806533pt;}
.y6{bottom:526.655067pt;}
.y27{bottom:534.114533pt;}
.y4c{bottom:538.138267pt;}
.y5f{bottom:543.170800pt;}
.y5{bottom:549.321733pt;}
.y3e{bottom:552.183200pt;}
.yc4{bottom:569.139867pt;}
.y4{bottom:571.988400pt;}
.y3{bottom:594.655067pt;}
.yc3{bottom:614.473200pt;}
.y2{bottom:617.321733pt;}
.y13{bottom:634.648667pt;}
.y1{bottom:639.988400pt;}
.h1c{height:28.266667pt;}
.h10{height:33.328125pt;}
.h9{height:37.265625pt;}
.h1d{height:38.000000pt;}
.h8{height:39.101562pt;}
.h20{height:40.734375pt;}
.h15{height:43.875000pt;}
.h16{height:44.437500pt;}
.h1a{height:46.933333pt;}
.h13{height:51.739817pt;}
.h5{height:53.909333pt;}
.h4{height:54.581333pt;}
.h6{height:61.610667pt;}
.h3{height:62.378667pt;}
.h1e{height:62.953125pt;}
.h14{height:63.381347pt;}
.hb{height:64.979077pt;}
.hc{height:65.156677pt;}
.h19{height:65.600000pt;}
.he{height:65.812500pt;}
.h12{height:69.468750pt;}
.h11{height:70.359375pt;}
.h2{height:80.864000pt;}
.hf{height:85.171875pt;}
.h1{height:101.365333pt;}
.h18{height:102.933333pt;}
.h7{height:116.212578pt;}
.h23{height:116.484375pt;}
.ha{height:133.568750pt;}
.h1f{height:148.266667pt;}
.h21{height:158.933333pt;}
.h17{height:196.266667pt;}
.h22{height:269.600000pt;}
.h1b{height:345.600000pt;}
.h0{height:717.333333pt;}
.hd{height:770.250000pt;}
.w7{width:144.170133pt;}
.w9{width:213.968533pt;}
.w8{width:215.701867pt;}
.wa{width:215.794933pt;}
.w5{width:222.472800pt;}
.w6{width:265.614400pt;}
.w3{width:307.001333pt;}
.w2{width:401.427733pt;}
.w4{width:413.397200pt;}
.w1{width:590.440800pt;}
.w0{width:1276.000000pt;}
.x0{left:0.000000pt;}
.x37{left:4.800000pt;}
.x46{left:6.136533pt;}
.x47{left:8.868667pt;}
.x43{left:10.225733pt;}
.x45{left:12.678533pt;}
.x38{left:17.321747pt;}
.x3f{left:19.182000pt;}
.x44{left:21.841600pt;}
.x26{left:32.921853pt;}
.x41{left:34.704400pt;}
.x2a{left:44.020387pt;}
.x1{left:49.384320pt;}
.x8{left:52.617827pt;}
.x7{left:62.927507pt;}
.x2d{left:64.911987pt;}
.x36{left:73.883373pt;}
.x9{left:76.617827pt;}
.x3c{left:80.935587pt;}
.x28{left:89.527347pt;}
.x21{left:98.725707pt;}
.x13{left:107.179133pt;}
.xf{left:158.968933pt;}
.x2b{left:257.118800pt;}
.x29{left:259.871053pt;}
.x2c{left:272.886267pt;}
.x1a{left:274.769467pt;}
.x22{left:281.810667pt;}
.x23{left:287.878400pt;}
.x19{left:291.672133pt;}
.x18{left:299.820133pt;}
.x35{left:302.010667pt;}
.x17{left:303.973467pt;}
.x48{left:323.548400pt;}
.x14{left:331.384667pt;}
.x20{left:333.712400pt;}
.x30{left:339.788533pt;}
.x16{left:347.877467pt;}
.x15{left:404.064133pt;}
.x3a{left:406.164267pt;}
.x2{left:525.705467pt;}
.x3{left:536.393333pt;}
.x32{left:546.140133pt;}
.x3e{left:549.135600pt;}
.x34{left:568.402267pt;}
.x4{left:569.343600pt;}
.x31{left:578.306133pt;}
.x4a{left:590.231867pt;}
.x33{left:627.814400pt;}
.xa{left:656.906800pt;}
.x49{left:686.304133pt;}
.x12{left:712.751467pt;}
.x6{left:719.319467pt;}
.x1e{left:729.440267pt;}
.x1d{left:731.185600pt;}
.x1f{left:742.581600pt;}
.x1c{left:756.422933pt;}
.x27{left:761.501600pt;}
.x42{left:763.438933pt;}
.x2e{left:773.000667pt;}
.x2f{left:785.522400pt;}
.xc{left:791.694933pt;}
.xb{left:795.972800pt;}
.xd{left:815.317600pt;}
.xe{left:816.762000pt;}
.x1b{left:836.997600pt;}
.x39{left:867.980800pt;}
.x11{left:877.383467pt;}
.x10{left:878.716800pt;}
.x24{left:886.301333pt;}
.x3b{left:952.402267pt;}
.x40{left:955.787733pt;}
.x3d{left:1065.969067pt;}
.x25{left:1169.228667pt;}
.x5{left:1176.662267pt;}
}




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