
    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_7b432ebe1b6f77fd78b360c9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6b858a826e14a78433cbc172.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946289;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_bb6342c0d2e24a9d0ad6d040.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_82c47b954122e3a65b239da2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_742cbb5c48563f4b89e2596e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.934082;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_406aff8cc3d7ff3f196f32f5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.834961;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_a094fa703472ae914e681164.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_eccbb733b28e74cf949a1eb2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_44805738e33ea9a472f5fc71.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bc61596e5e355614a3f71df7.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b21b574028c346d87c7a9b82.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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ad2850dd190279ef32b45d10.woff')format("woff");}.ffd{font-family:ffd;line-height:0.946289;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_6cdd1725ba508910167a2bf0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.715820;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_7bfb70041343061c88928a4d.woff')format("woff");}.fff{font-family:fff;line-height:0.958496;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_2d21b677f667d077192ea61d.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0b7d69b5dcec7c895546acfa.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_e27868835c263c207fae18d2.woff')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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_2225cf1ce7f9d4412ddd6b55.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b21b574028c346d87c7a9b82.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_8dfb1107a8c6c651b56bfc7f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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_04afbf366877e2c0d3ce83d2.woff')format("woff");}.ff16{font-family:ff16;line-height:0.926270;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_9553f82c2bfd4d7985c936e7.woff')format("woff");}.ff17{font-family:ff17;line-height:0.862793;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_e41360febc2e7e20b005fdd8.woff')format("woff");}.ff18{font-family:ff18;line-height:0.910156;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);}
.v2{vertical-align:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.003906px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:1461.562606px;}
.ls4{letter-spacing:1765.050346px;}
.ls5{letter-spacing:2088.912079px;}
.ls3{letter-spacing:2247.751040px;}
.ls1{letter-spacing:2252.731379px;}
.ls2{letter-spacing:2253.441718px;}
.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:-47.250000px;}
.ws6{word-spacing:-29.999999px;}
.ws0{word-spacing:-14.414062px;}
.ws3{word-spacing:-13.212891px;}
.ws5{word-spacing:-9.000000px;}
.ws4{word-spacing:-8.648438px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-8.613280px;}
._2{margin-left:-4.921875px;}
._0{margin-left:-2.957225px;}
._1{margin-left:-1.054687px;}
._4{width:44.507812px;}
._5{width:49.798827px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:rgb(3,29,57);}
.fc8{color:rgb(25,96,150);}
.fc6{color:rgb(255,153,0);}
.fc4{color:rgb(17,85,204);}
.fc1{color:rgb(244,125,32);}
.fc5{color:rgb(102,102,102);}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:43.200002px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs7{font-size:63.000000px;}
.fs5{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.999997px;}
.fs3{font-size:96.000003px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.625500px;}
.y22{bottom:9.921295px;}
.y1e{bottom:9.921340px;}
.y18{bottom:9.921348px;}
.y11{bottom:9.921378px;}
.y14{bottom:9.921387px;}
.y29{bottom:9.921398px;}
.yb{bottom:9.921432px;}
.yd3{bottom:11.370851px;}
.yac{bottom:11.371583px;}
.y59{bottom:11.768562px;}
.ybe{bottom:12.000005px;}
.y61{bottom:12.708978px;}
.y47{bottom:12.708981px;}
.y41{bottom:12.708985px;}
.y55{bottom:12.708993px;}
.y44{bottom:12.708996px;}
.y70{bottom:13.514466px;}
.yea{bottom:15.021248px;}
.yd1{bottom:15.021965px;}
.yde{bottom:15.021974px;}
.yc6{bottom:15.021976px;}
.yaa{bottom:15.166260px;}
.y4a{bottom:16.004887px;}
.y3d{bottom:18.565339px;}
.y3a{bottom:18.565427px;}
.y3f{bottom:18.565430px;}
.yd{bottom:20.104980px;}
.yb8{bottom:25.594493px;}
.y17{bottom:29.696778px;}
.y10{bottom:29.696823px;}
.y33{bottom:31.458988px;}
.ybd{bottom:32.141615px;}
.y28{bottom:32.696693px;}
.y6e{bottom:33.093384px;}
.y58{bottom:33.407223px;}
.y54{bottom:34.681638px;}
.y43{bottom:34.681641px;}
.yc5{bottom:38.184076px;}
.ye9{bottom:38.184083px;}
.yd0{bottom:38.184800px;}
.ydd{bottom:38.184809px;}
.y35{bottom:39.149963px;}
.y2{bottom:39.150008px;}
.y73{bottom:39.150146px;}
.y3c{bottom:40.538086px;}
.y49{bottom:41.273437px;}
.y39{bottom:43.537994px;}
.yb7{bottom:47.330573px;}
.ybc{bottom:52.283210px;}
.y57{bottom:55.379883px;}
.y27{bottom:55.472168px;}
.y53{bottom:56.654298px;}
.ydc{bottom:58.326419px;}
.ye8{bottom:61.346918px;}
.yc4{bottom:61.346926px;}
.ycf{bottom:61.347650px;}
.y32{bottom:62.840332px;}
.y38{bottom:65.510651px;}
.yb6{bottom:70.494143px;}
.ybb{bottom:72.424805px;}
.y26{bottom:75.247568px;}
.ydb{bottom:78.467279px;}
.ye7{bottom:83.083013px;}
.yce{bottom:83.083730px;}
.y31{bottom:83.538577px;}
.yc3{bottom:84.509765px;}
.y37{bottom:87.483398px;}
.yb5{bottom:93.656258px;}
.y25{bottom:95.022953px;}
.yda{bottom:98.609609px;}
.ye6{bottom:104.819093px;}
.ycd{bottom:104.819810px;}
.yc2{bottom:107.672608px;}
.yf0{bottom:109.144046px;}
.ybf{bottom:109.820430px;}
.yb4{bottom:116.819093px;}
.y24{bottom:117.798247px;}
.yd9{bottom:118.751219px;}
.ye5{bottom:126.555173px;}
.ycc{bottom:126.555905px;}
.yc1{bottom:127.814209px;}
.yef{bottom:129.285641px;}
.y30{bottom:132.312838px;}
.yba{bottom:138.035148px;}
.yd8{bottom:138.892079px;}
.yb3{bottom:139.981943px;}
.ye4{bottom:148.291268px;}
.ycb{bottom:148.291985px;}
.yee{bottom:149.427251px;}
.y2f{bottom:155.896913px;}
.yd7{bottom:159.034424px;}
.yb2{bottom:163.144778px;}
.yed{bottom:169.568846px;}
.yca{bottom:170.028065px;}
.ye3{bottom:170.028083px;}
.yd6{bottom:179.176019px;}
.y2e{bottom:184.388027px;}
.yb1{bottom:186.307628px;}
.yc9{bottom:191.764160px;}
.ye2{bottom:191.764163px;}
.yec{bottom:194.507811px;}
.yd5{bottom:199.316894px;}
.yb9{bottom:199.628166px;}
.y69{bottom:203.117620px;}
.yb0{bottom:209.471198px;}
.ye1{bottom:213.500243px;}
.yeb{bottom:220.874998px;}
.y68{bottom:225.090277px;}
.y2d{bottom:227.217133px;}
.yaf{bottom:232.633313px;}
.yad{bottom:235.476555px;}
.ye0{bottom:239.138670px;}
.y2c{bottom:245.480898px;}
.y67{bottom:247.062933px;}
.yae{bottom:255.796148px;}
.y2b{bottom:265.256289px;}
.y9d{bottom:280.546513px;}
.y66{bottom:285.910582px;}
.y2a{bottom:292.156674px;}
.y9c{bottom:302.519169px;}
.y65{bottom:307.883238px;}
.y23{bottom:319.057063px;}
.y9b{bottom:324.491825px;}
.y9a{bottom:346.464481px;}
.y64{bottom:346.730903px;}
.y99{bottom:368.437138px;}
.y63{bottom:368.703558px;}
.y98{bottom:390.409783px;}
.y60{bottom:407.551210px;}
.y97{bottom:411.979241px;}
.y21{bottom:426.934015px;}
.y62{bottom:429.523868px;}
.y96{bottom:434.135378px;}
.ydf{bottom:441.807126px;}
.y5f{bottom:451.496523px;}
.y20{bottom:453.834414px;}
.yd4{bottom:477.654789px;}
.y95{bottom:479.820919px;}
.yab{bottom:480.440916px;}
.y1f{bottom:480.734801px;}
.y5e{bottom:490.344173px;}
.y94{bottom:501.793575px;}
.y1d{bottom:511.109801px;}
.y5d{bottom:512.316828px;}
.y93{bottom:523.766231px;}
.ya9{bottom:534.021238px;}
.y92{bottom:545.738887px;}
.y5c{bottom:551.164491px;}
.y5b{bottom:557.756287px;}
.y1c{bottom:559.455458px;}
.y91{bottom:567.711544px;}
.ya8{bottom:578.498286px;}
.y5a{bottom:579.728943px;}
.y90{bottom:589.684200px;}
.ya7{bottom:600.470942px;}
.y1b{bottom:604.200578px;}
.y8f{bottom:611.656856px;}
.y52{bottom:618.576595px;}
.y56{bottom:619.851010px;}
.ya6{bottom:622.443598px;}
.y8e{bottom:633.629512px;}
.y1a{bottom:634.436366px;}
.y51{bottom:640.549252px;}
.ya5{bottom:644.416258px;}
.y8d{bottom:655.602169px;}
.y16{bottom:660.271908px;}
.y50{bottom:662.521908px;}
.yd2{bottom:666.140628px;}
.ya4{bottom:666.388918px;}
.y8c{bottom:677.574825px;}
.y19{bottom:680.047299px;}
.ya3{bottom:688.361578px;}
.y8b{bottom:699.547481px;}
.y4f{bottom:701.369573px;}
.yc8{bottom:701.988288px;}
.y15{bottom:706.947654px;}
.ya2{bottom:710.334223px;}
.y8a{bottom:721.520137px;}
.y4e{bottom:723.342228px;}
.ya1{bottom:732.306883px;}
.y13{bottom:733.848039px;}
.y89{bottom:743.492794px;}
.ya0{bottom:754.279543px;}
.yf{bottom:760.748433px;}
.y4d{bottom:762.189876px;}
.y88{bottom:765.465450px;}
.y4c{bottom:768.781673px;}
.y9f{bottom:776.252203px;}
.y12{bottom:780.523824px;}
.y87{bottom:787.438106px;}
.y4b{bottom:790.754328px;}
.y7c{bottom:791.141961px;}
.y9e{bottom:798.224856px;}
.yc{bottom:807.424251px;}
.y86{bottom:809.410762px;}
.ya{bottom:814.607799px;}
.y48{bottom:829.601991px;}
.y85{bottom:831.383419px;}
.y46{bottom:836.193788px;}
.y7b{bottom:840.758423px;}
.y9{bottom:846.342223px;}
.yfa{bottom:849.749270px;}
.y71{bottom:851.462403px;}
.y84{bottom:853.356077px;}
.y45{bottom:858.166443px;}
.y8{bottom:868.314853px;}
.yf9{bottom:871.721926px;}
.y83{bottom:875.328733px;}
.yc7{bottom:882.920661px;}
.y7a{bottom:886.040771px;}
.y6d{bottom:890.582515px;}
.y7{bottom:891.898823px;}
.yf8{bottom:893.694583px;}
.y42{bottom:897.014093px;}
.y82{bottom:897.301390px;}
.y79{bottom:910.682366px;}
.yf7{bottom:915.667243px;}
.yc0{bottom:918.769042px;}
.y40{bottom:918.986748px;}
.y81{bottom:919.274046px;}
.y6f{bottom:922.939632px;}
.y78{bottom:935.324336px;}
.yf6{bottom:937.639888px;}
.y6{bottom:939.195698px;}
.y80{bottom:941.246702px;}
.y36{bottom:957.834411px;}
.yf5{bottom:959.612548px;}
.y77{bottom:959.965571px;}
.y7f{bottom:963.219358px;}
.y5{bottom:984.075578px;}
.y76{bottom:984.607181px;}
.y7e{bottom:985.192015px;}
.yf4{bottom:985.979743px;}
.y6c{bottom:986.492066px;}
.y3b{bottom:1004.779724px;}
.y4{bottom:1006.414467px;}
.y7d{bottom:1007.164672px;}
.y75{bottom:1009.249145px;}
.y6b{bottom:1009.892944px;}
.yf3{bottom:1012.346923px;}
.y3e{bottom:1026.752379px;}
.yf2{bottom:1034.319580px;}
.y3{bottom:1043.035537px;}
.y74{bottom:1048.748290px;}
.y6a{bottom:1054.461364px;}
.yf1{bottom:1055.889404px;}
.y72{bottom:1071.599853px;}
.y1{bottom:1071.599991px;}
.y34{bottom:1071.600036px;}
.h31{height:24.328125px;}
.h12{height:25.775300px;}
.h11{height:25.775344px;}
.hc{height:25.775391px;}
.h7{height:25.775436px;}
.h9{height:32.958984px;}
.h34{height:34.722657px;}
.h2c{height:34.723389px;}
.h14{height:35.991211px;}
.he{height:36.228516px;}
.h1c{height:37.722657px;}
.h8{height:38.179688px;}
.h2b{height:38.518067px;}
.ha{height:38.838867px;}
.h23{height:41.384583px;}
.h19{height:42.421874px;}
.h4{height:43.154296px;}
.h1b{height:43.722657px;}
.h29{height:43.989259px;}
.h2f{height:45.181642px;}
.hd{height:45.550782px;}
.hb{height:45.550827px;}
.h2d{height:47.244142px;}
.hf{height:47.469728px;}
.h10{height:47.988281px;}
.h25{height:48.049806px;}
.h2{height:48.656250px;}
.h6{height:51.785156px;}
.h28{height:52.417969px;}
.h15{height:55.986326px;}
.h1d{height:59.695312px;}
.h2a{height:60.075001px;}
.h21{height:60.416013px;}
.h26{height:63.984377px;}
.h1a{height:65.695312px;}
.h1e{height:66.287109px;}
.h27{height:67.875002px;}
.h5{height:69.046877px;}
.h22{height:73.741699px;}
.h20{height:80.393555px;}
.h1f{height:81.667970px;}
.h3{height:86.308592px;}
.h30{height:96.316407px;}
.h16{height:100.343265px;}
.h18{height:112.640625px;}
.h13{height:133.652252px;}
.h32{height:151.705810px;}
.h17{height:191.399964px;}
.h1{height:191.400009px;}
.h24{height:191.400147px;}
.h33{height:215.655762px;}
.h35{height:223.208496px;}
.h36{height:237.391845px;}
.h2e{height:279.687750px;}
.h0{height:1263.000000px;}
.w6{width:111.375000px;}
.w4{width:122.625000px;}
.w8{width:132.750000px;}
.w9{width:135.000000px;}
.w5{width:167.625000px;}
.w2{width:174.375000px;}
.wa{width:182.250000px;}
.w7{width:261.000000px;}
.wc{width:285.750000px;}
.wd{width:375.750000px;}
.wb{width:490.500000px;}
.w3{width:493.875000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x14{left:6.750000px;}
.x8{left:7.875000px;}
.xf{left:15.750000px;}
.x6{left:16.875000px;}
.x1d{left:19.125000px;}
.x1f{left:33.750000px;}
.x4{left:108.000000px;}
.x5{left:109.125000px;}
.xe{left:111.375000px;}
.x1c{left:122.625000px;}
.x18{left:135.000000px;}
.x1b{left:162.000000px;}
.x2{left:216.815100px;}
.x9{left:232.875000px;}
.x1{left:244.125000px;}
.x10{left:245.250000px;}
.x17{left:282.375000px;}
.x7{left:284.625000px;}
.x16{left:292.500000px;}
.x1a{left:324.792146px;}
.x3{left:358.241659px;}
.x11{left:381.375000px;}
.xa{left:401.625000px;}
.x1e{left:409.500000px;}
.xc{left:446.456700px;}
.xb{left:514.125000px;}
.x12{left:517.500000px;}
.x19{left:624.206700px;}
.x13{left:653.625000px;}
.x15{left:775.720046px;}
.xd{left:776.845046px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.781250pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1299.166761pt;}
.ls4{letter-spacing:1568.933641pt;}
.ls5{letter-spacing:1856.810737pt;}
.ls3{letter-spacing:1998.000925pt;}
.ls1{letter-spacing:2002.427893pt;}
.ls2{letter-spacing:2003.059305pt;}
.ws2{word-spacing:-42.000000pt;}
.ws6{word-spacing:-26.666666pt;}
.ws0{word-spacing:-12.812500pt;}
.ws3{word-spacing:-11.744792pt;}
.ws5{word-spacing:-8.000000pt;}
.ws4{word-spacing:-7.687500pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-7.656249pt;}
._2{margin-left:-4.375000pt;}
._0{margin-left:-2.628645pt;}
._1{margin-left:-0.937500pt;}
._4{width:39.562500pt;}
._5{width:44.265624pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:38.400002pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs7{font-size:56.000000pt;}
.fs5{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.666664pt;}
.fs3{font-size:85.333336pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:3.222667pt;}
.y22{bottom:8.818929pt;}
.y1e{bottom:8.818969pt;}
.y18{bottom:8.818976pt;}
.y11{bottom:8.819003pt;}
.y14{bottom:8.819010pt;}
.y29{bottom:8.819020pt;}
.yb{bottom:8.819050pt;}
.yd3{bottom:10.107423pt;}
.yac{bottom:10.108073pt;}
.y59{bottom:10.460944pt;}
.ybe{bottom:10.666671pt;}
.y61{bottom:11.296869pt;}
.y47{bottom:11.296872pt;}
.y41{bottom:11.296876pt;}
.y55{bottom:11.296882pt;}
.y44{bottom:11.296885pt;}
.y70{bottom:12.012858pt;}
.yea{bottom:13.352220pt;}
.yd1{bottom:13.352858pt;}
.yde{bottom:13.352866pt;}
.yc6{bottom:13.352867pt;}
.yaa{bottom:13.481120pt;}
.y4a{bottom:14.226566pt;}
.y3d{bottom:16.502523pt;}
.y3a{bottom:16.502602pt;}
.y3f{bottom:16.502605pt;}
.yd{bottom:17.871093pt;}
.yb8{bottom:22.750660pt;}
.y17{bottom:26.397136pt;}
.y10{bottom:26.397176pt;}
.y33{bottom:27.963545pt;}
.ybd{bottom:28.570324pt;}
.y28{bottom:29.063727pt;}
.y6e{bottom:29.416341pt;}
.y58{bottom:29.695309pt;}
.y54{bottom:30.828122pt;}
.y43{bottom:30.828125pt;}
.yc5{bottom:33.941400pt;}
.ye9{bottom:33.941407pt;}
.yd0{bottom:33.942044pt;}
.ydd{bottom:33.942052pt;}
.y35{bottom:34.799967pt;}
.y2{bottom:34.800007pt;}
.y73{bottom:34.800130pt;}
.y3c{bottom:36.033854pt;}
.y49{bottom:36.687500pt;}
.y39{bottom:38.700439pt;}
.yb7{bottom:42.071620pt;}
.ybc{bottom:46.473964pt;}
.y57{bottom:49.226562pt;}
.y27{bottom:49.308593pt;}
.y53{bottom:50.359376pt;}
.ydc{bottom:51.845706pt;}
.ye8{bottom:54.530594pt;}
.yc4{bottom:54.530600pt;}
.ycf{bottom:54.531244pt;}
.y32{bottom:55.858073pt;}
.y38{bottom:58.231690pt;}
.yb6{bottom:62.661460pt;}
.ybb{bottom:64.377604pt;}
.y26{bottom:66.886727pt;}
.ydb{bottom:69.748692pt;}
.ye7{bottom:73.851567pt;}
.yce{bottom:73.852204pt;}
.y31{bottom:74.256513pt;}
.yc3{bottom:75.119791pt;}
.y37{bottom:77.763021pt;}
.yb5{bottom:83.250007pt;}
.y25{bottom:84.464847pt;}
.yda{bottom:87.652986pt;}
.ye6{bottom:93.172527pt;}
.ycd{bottom:93.173164pt;}
.yc2{bottom:95.708984pt;}
.yf0{bottom:97.016930pt;}
.ybf{bottom:97.618160pt;}
.yb4{bottom:103.839194pt;}
.y24{bottom:104.709553pt;}
.yd9{bottom:105.556639pt;}
.ye5{bottom:112.493487pt;}
.ycc{bottom:112.494138pt;}
.yc1{bottom:113.612630pt;}
.yef{bottom:114.920570pt;}
.y30{bottom:117.611412pt;}
.yba{bottom:122.697909pt;}
.yd8{bottom:123.459626pt;}
.yb3{bottom:124.428394pt;}
.ye4{bottom:131.814460pt;}
.ycb{bottom:131.815098pt;}
.yee{bottom:132.824223pt;}
.y2f{bottom:138.575033pt;}
.yd7{bottom:141.363932pt;}
.yb2{bottom:145.017580pt;}
.yed{bottom:150.727863pt;}
.yca{bottom:151.136058pt;}
.ye3{bottom:151.136074pt;}
.yd6{bottom:159.267572pt;}
.y2e{bottom:163.900469pt;}
.yb1{bottom:165.606780pt;}
.yc9{bottom:170.457031pt;}
.ye2{bottom:170.457034pt;}
.yec{bottom:172.895832pt;}
.yd5{bottom:177.170572pt;}
.yb9{bottom:177.447259pt;}
.y69{bottom:180.548996pt;}
.yb0{bottom:186.196620pt;}
.ye1{bottom:189.777994pt;}
.yeb{bottom:196.333332pt;}
.y68{bottom:200.080247pt;}
.y2d{bottom:201.970785pt;}
.yaf{bottom:206.785167pt;}
.yad{bottom:209.312493pt;}
.ye0{bottom:212.567707pt;}
.y2c{bottom:218.205243pt;}
.y67{bottom:219.611496pt;}
.yae{bottom:227.374354pt;}
.y2b{bottom:235.783368pt;}
.y9d{bottom:249.374678pt;}
.y66{bottom:254.142740pt;}
.y2a{bottom:259.694821pt;}
.y9c{bottom:268.905928pt;}
.y65{bottom:273.673989pt;}
.y23{bottom:283.606279pt;}
.y9b{bottom:288.437178pt;}
.y9a{bottom:307.968428pt;}
.y64{bottom:308.205247pt;}
.y99{bottom:327.499678pt;}
.y63{bottom:327.736496pt;}
.y98{bottom:347.030918pt;}
.y60{bottom:362.267743pt;}
.y97{bottom:366.203770pt;}
.y21{bottom:379.496903pt;}
.y62{bottom:381.798993pt;}
.y96{bottom:385.898113pt;}
.ydf{bottom:392.717445pt;}
.y5f{bottom:401.330243pt;}
.y20{bottom:403.408368pt;}
.yd4{bottom:424.582035pt;}
.y95{bottom:426.507483pt;}
.yab{bottom:427.058592pt;}
.y1f{bottom:427.319823pt;}
.y5e{bottom:435.861487pt;}
.y94{bottom:446.038733pt;}
.y1d{bottom:454.319823pt;}
.y5d{bottom:455.392736pt;}
.y93{bottom:465.569983pt;}
.ya9{bottom:474.685545pt;}
.y92{bottom:485.101233pt;}
.y5c{bottom:489.923992pt;}
.y5b{bottom:495.783367pt;}
.y1c{bottom:497.293740pt;}
.y91{bottom:504.632483pt;}
.ya8{bottom:514.220698pt;}
.y5a{bottom:515.314616pt;}
.y90{bottom:524.163733pt;}
.ya7{bottom:533.751948pt;}
.y1b{bottom:537.067180pt;}
.y8f{bottom:543.694983pt;}
.y52{bottom:549.845863pt;}
.y56{bottom:550.978676pt;}
.ya6{bottom:553.283198pt;}
.y8e{bottom:563.226233pt;}
.y1a{bottom:563.943436pt;}
.y51{bottom:569.377113pt;}
.ya5{bottom:572.814452pt;}
.y8d{bottom:582.757483pt;}
.y16{bottom:586.908363pt;}
.y50{bottom:588.908363pt;}
.yd2{bottom:592.125003pt;}
.ya4{bottom:592.345705pt;}
.y8c{bottom:602.288733pt;}
.y19{bottom:604.486488pt;}
.ya3{bottom:611.876958pt;}
.y8b{bottom:621.819983pt;}
.y4f{bottom:623.439620pt;}
.yc8{bottom:623.989589pt;}
.y15{bottom:628.397915pt;}
.ya2{bottom:631.408198pt;}
.y8a{bottom:641.351233pt;}
.y4e{bottom:642.970869pt;}
.ya1{bottom:650.939452pt;}
.y13{bottom:652.309368pt;}
.y89{bottom:660.882483pt;}
.ya0{bottom:670.470705pt;}
.yf{bottom:676.220829pt;}
.y4d{bottom:677.502112pt;}
.y88{bottom:680.413733pt;}
.y4c{bottom:683.361487pt;}
.y9f{bottom:690.001958pt;}
.y12{bottom:693.798955pt;}
.y87{bottom:699.944983pt;}
.y4b{bottom:702.892736pt;}
.y7c{bottom:703.237299pt;}
.y9e{bottom:709.533205pt;}
.yc{bottom:717.710445pt;}
.y86{bottom:719.476233pt;}
.ya{bottom:724.095821pt;}
.y48{bottom:737.423992pt;}
.y85{bottom:739.007483pt;}
.y46{bottom:743.283367pt;}
.y7b{bottom:747.340820pt;}
.y9{bottom:752.304198pt;}
.yfa{bottom:755.332685pt;}
.y71{bottom:756.855469pt;}
.y84{bottom:758.538735pt;}
.y45{bottom:762.814616pt;}
.y8{bottom:771.835425pt;}
.yf9{bottom:774.863935pt;}
.y83{bottom:778.069985pt;}
.yc7{bottom:784.818365pt;}
.y7a{bottom:787.591796pt;}
.y6d{bottom:791.628903pt;}
.y7{bottom:792.798953pt;}
.yf8{bottom:794.395185pt;}
.y42{bottom:797.345860pt;}
.y82{bottom:797.601235pt;}
.y79{bottom:809.495436pt;}
.yf7{bottom:813.926438pt;}
.yc0{bottom:816.683593pt;}
.y40{bottom:816.877109pt;}
.y81{bottom:817.132485pt;}
.y6f{bottom:820.390784pt;}
.y78{bottom:831.399410pt;}
.yf6{bottom:833.457678pt;}
.y6{bottom:834.840620pt;}
.y80{bottom:836.663735pt;}
.y36{bottom:851.408365pt;}
.yf5{bottom:852.988932pt;}
.y77{bottom:853.302730pt;}
.y7f{bottom:856.194985pt;}
.y5{bottom:874.733847pt;}
.y76{bottom:875.206383pt;}
.y7e{bottom:875.726235pt;}
.yf4{bottom:876.426438pt;}
.y6c{bottom:876.881836pt;}
.y3b{bottom:893.137532pt;}
.y4{bottom:894.590637pt;}
.y7d{bottom:895.257486pt;}
.y75{bottom:897.110351pt;}
.y6b{bottom:897.682617pt;}
.yf3{bottom:899.863932pt;}
.y3e{bottom:912.668781pt;}
.yf2{bottom:919.395182pt;}
.y3{bottom:927.142700pt;}
.y74{bottom:932.220703pt;}
.y6a{bottom:937.298990pt;}
.yf1{bottom:938.568359pt;}
.y72{bottom:952.533203pt;}
.y1{bottom:952.533325pt;}
.y34{bottom:952.533365pt;}
.h31{height:21.625000pt;}
.h12{height:22.911377pt;}
.h11{height:22.911417pt;}
.hc{height:22.911459pt;}
.h7{height:22.911499pt;}
.h9{height:29.296875pt;}
.h34{height:30.864584pt;}
.h2c{height:30.865235pt;}
.h14{height:31.992188pt;}
.he{height:32.203125pt;}
.h1c{height:33.531251pt;}
.h8{height:33.937500pt;}
.h2b{height:34.238281pt;}
.ha{height:34.523438pt;}
.h23{height:36.786296pt;}
.h19{height:37.708332pt;}
.h4{height:38.359374pt;}
.h1b{height:38.864584pt;}
.h29{height:39.101563pt;}
.h2f{height:40.161459pt;}
.hd{height:40.489584pt;}
.hb{height:40.489624pt;}
.h2d{height:41.994793pt;}
.hf{height:42.195313pt;}
.h10{height:42.656250pt;}
.h25{height:42.710938pt;}
.h2{height:43.250000pt;}
.h6{height:46.031250pt;}
.h28{height:46.593750pt;}
.h15{height:49.765623pt;}
.h1d{height:53.062500pt;}
.h2a{height:53.400001pt;}
.h21{height:53.703123pt;}
.h26{height:56.875002pt;}
.h1a{height:58.395833pt;}
.h1e{height:58.921875pt;}
.h27{height:60.333335pt;}
.h5{height:61.375002pt;}
.h22{height:65.548177pt;}
.h20{height:71.460937pt;}
.h1f{height:72.593751pt;}
.h3{height:76.718748pt;}
.h30{height:85.614584pt;}
.h16{height:89.194013pt;}
.h18{height:100.125000pt;}
.h13{height:118.802001pt;}
.h32{height:134.849609pt;}
.h17{height:170.133301pt;}
.h1{height:170.133341pt;}
.h24{height:170.133464pt;}
.h33{height:191.694011pt;}
.h35{height:198.407552pt;}
.h36{height:211.014973pt;}
.h2e{height:248.611333pt;}
.h0{height:1122.666667pt;}
.w6{width:99.000000pt;}
.w4{width:109.000000pt;}
.w8{width:118.000000pt;}
.w9{width:120.000000pt;}
.w5{width:149.000000pt;}
.w2{width:155.000000pt;}
.wa{width:162.000000pt;}
.w7{width:232.000000pt;}
.wc{width:254.000000pt;}
.wd{width:334.000000pt;}
.wb{width:436.000000pt;}
.w3{width:439.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x14{left:6.000000pt;}
.x8{left:7.000000pt;}
.xf{left:14.000000pt;}
.x6{left:15.000000pt;}
.x1d{left:17.000000pt;}
.x1f{left:30.000000pt;}
.x4{left:96.000000pt;}
.x5{left:97.000000pt;}
.xe{left:99.000000pt;}
.x1c{left:109.000000pt;}
.x18{left:120.000000pt;}
.x1b{left:144.000000pt;}
.x2{left:192.724533pt;}
.x9{left:207.000000pt;}
.x1{left:217.000000pt;}
.x10{left:218.000000pt;}
.x17{left:251.000000pt;}
.x7{left:253.000000pt;}
.x16{left:260.000000pt;}
.x1a{left:288.704130pt;}
.x3{left:318.437030pt;}
.x11{left:339.000000pt;}
.xa{left:357.000000pt;}
.x1e{left:364.000000pt;}
.xc{left:396.850400pt;}
.xb{left:457.000000pt;}
.x12{left:460.000000pt;}
.x19{left:554.850400pt;}
.x13{left:581.000000pt;}
.x15{left:689.528930pt;}
.xd{left:690.528930pt;}
}




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