
    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_cb13ceb4b8e220d917352e99.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_5d8b3187728bc2db73b4ce3d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_54d79a227e2a0c39c44d2360.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_2c9829b7e4fcd92093af2fba.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cb55887b5b57b7e6ec084229.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_9a44a5bfebe11c94e25c7ee6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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_1ead4fd02576095ec12dfac5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.925781;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_b18f0ace007505379d4dd0b7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_efa315c43f2369fb8ebaea56.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922852;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_e1e6176537b23294de50caf2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.678711;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_d574f2cf7d1dca831ac4b6e2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_2573bcbf5fe6f50c49b92dd0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.811000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:187.200000px;}
.ls2c{letter-spacing:-4.800000px;}
.ls25{letter-spacing:-3.168000px;}
.ls21{letter-spacing:-2.808000px;}
.ls1f{letter-spacing:-2.592000px;}
.lsa{letter-spacing:-2.376000px;}
.ls24{letter-spacing:-1.224000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls29{letter-spacing:-0.864000px;}
.ls28{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.648000px;}
.ls1e{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls2d{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.381600px;}
.ls26{letter-spacing:0.403200px;}
.ls16{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.936000px;}
.ls10{letter-spacing:1.008000px;}
.ls1c{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.152000px;}
.ls2b{letter-spacing:2.928000px;}
.ls2a{letter-spacing:4.752000px;}
.ls5{letter-spacing:6.602400px;}
.ls1{letter-spacing:7.614000px;}
.ls0{letter-spacing:8.436000px;}
.ls2{letter-spacing:10.740000px;}
.ls3{letter-spacing:10.925199px;}
.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;}
}
.ws2f{word-spacing:-20.232000px;}
.ws15{word-spacing:-18.504000px;}
.ws30{word-spacing:-18.432000px;}
.ws31{word-spacing:-18.288000px;}
.ws33{word-spacing:-18.216000px;}
.ws24{word-spacing:-18.144000px;}
.ws34{word-spacing:-18.072000px;}
.wsd{word-spacing:-18.000000px;}
.ws2a{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws32{word-spacing:-17.640000px;}
.wsc{word-spacing:-17.496000px;}
.ws17{word-spacing:-17.424000px;}
.ws1f{word-spacing:-17.352000px;}
.ws16{word-spacing:-14.820000px;}
.ws38{word-spacing:-13.488000px;}
.ws39{word-spacing:-11.856000px;}
.ws3a{word-spacing:-11.616000px;}
.wsb{word-spacing:-8.496000px;}
.ws4{word-spacing:-7.614000px;}
.ws37{word-spacing:-4.800000px;}
.ws22{word-spacing:-1.152000px;}
.ws28{word-spacing:-1.080000px;}
.ws13{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.936000px;}
.ws12{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.792000px;}
.ws7{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.648000px;}
.ws21{word-spacing:-0.576000px;}
.ws2d{word-spacing:-0.504000px;}
.ws1d{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.360000px;}
.ws18{word-spacing:-0.288000px;}
.ws10{word-spacing:-0.216000px;}
.ws2e{word-spacing:-0.144000px;}
.ws11{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:0.072000px;}
.ws1e{word-spacing:0.144000px;}
.ws1a{word-spacing:0.216000px;}
.ws3d{word-spacing:0.240000px;}
.wsf{word-spacing:0.288000px;}
.ws1b{word-spacing:0.360000px;}
.wsa{word-spacing:0.432000px;}
.ws20{word-spacing:0.504000px;}
.ws25{word-spacing:0.576000px;}
.ws27{word-spacing:0.648000px;}
.ws1c{word-spacing:0.720000px;}
.ws35{word-spacing:0.792000px;}
.ws36{word-spacing:0.864000px;}
.ws23{word-spacing:1.008000px;}
.ws2b{word-spacing:1.224000px;}
.ws6{word-spacing:1.800000px;}
.ws2c{word-spacing:2.232000px;}
.ws26{word-spacing:2.592000px;}
.ws3c{word-spacing:3.360000px;}
.ws5{word-spacing:3.780000px;}
.ws3{word-spacing:4.200000px;}
.ws3b{word-spacing:4.800000px;}
.ws0{word-spacing:146.196000px;}
._d{margin-left:-948.820800px;}
._12{margin-left:-20.232000px;}
._f{margin-left:-15.447600px;}
._e{margin-left:-14.299200px;}
._13{margin-left:-12.511200px;}
._14{margin-left:-10.512000px;}
._4{margin-left:-7.792200px;}
._10{margin-left:-6.701400px;}
._7{margin-left:-5.443200px;}
._6{margin-left:-4.174200px;}
._c{margin-left:-3.045600px;}
._0{margin-left:-1.782000px;}
._3{width:1.177200px;}
._9{width:2.300400px;}
._1{width:4.254000px;}
._8{width:6.220800px;}
._5{width:7.614000px;}
._b{width:9.030600px;}
._a{width:10.060200px;}
._2{width:11.356200px;}
._11{width:12.700800px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:437.181000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.ya9{bottom:117.000000px;}
.ycf{bottom:117.078000px;}
.yec{bottom:118.334100px;}
.y88{bottom:118.592100px;}
.y63{bottom:118.742100px;}
.y18{bottom:120.458250px;}
.y3e{bottom:120.700200px;}
.yce{bottom:138.984000px;}
.ya8{bottom:139.500000px;}
.yeb{bottom:140.834100px;}
.y87{bottom:141.092100px;}
.y62{bottom:141.242100px;}
.y3d{bottom:142.894200px;}
.y17{bottom:143.858250px;}
.ycd{bottom:160.890000px;}
.ya7{bottom:162.000000px;}
.yea{bottom:163.334100px;}
.y86{bottom:163.592100px;}
.y61{bottom:163.742100px;}
.y3c{bottom:165.088200px;}
.y16{bottom:167.258250px;}
.ycc{bottom:182.796000px;}
.ya6{bottom:184.500000px;}
.ye9{bottom:185.834100px;}
.y85{bottom:186.092100px;}
.y60{bottom:186.242100px;}
.y3b{bottom:187.282200px;}
.y15{bottom:190.658250px;}
.y119{bottom:193.122000px;}
.ycb{bottom:204.702000px;}
.ya5{bottom:207.000000px;}
.y84{bottom:208.592100px;}
.ye8{bottom:208.640100px;}
.y5f{bottom:208.742100px;}
.y3a{bottom:209.476200px;}
.y118{bottom:211.872000px;}
.y14{bottom:214.058250px;}
.yca{bottom:226.608000px;}
.ya4{bottom:229.500000px;}
.y117{bottom:230.622000px;}
.y5e{bottom:231.242100px;}
.ye7{bottom:231.446100px;}
.y39{bottom:231.670200px;}
.y13{bottom:237.458250px;}
.y83{bottom:239.596050px;}
.yc9{bottom:248.514000px;}
.y116{bottom:249.372000px;}
.ya3{bottom:252.000000px;}
.y5d{bottom:253.742100px;}
.y38{bottom:253.864200px;}
.ye6{bottom:254.252100px;}
.y82{bottom:258.346050px;}
.y12{bottom:260.858250px;}
.yc8{bottom:270.420000px;}
.ya2{bottom:274.500000px;}
.y37{bottom:276.058200px;}
.y5c{bottom:276.242100px;}
.ye5{bottom:277.058100px;}
.y81{bottom:277.096050px;}
.y115{bottom:279.372000px;}
.y11{bottom:284.258250px;}
.yc7{bottom:292.326000px;}
.y80{bottom:295.846050px;}
.ya1{bottom:297.000000px;}
.y36{bottom:298.252200px;}
.y5b{bottom:298.742100px;}
.ye4{bottom:299.864100px;}
.y97{bottom:307.246050px;}
.y10{bottom:307.658250px;}
.yc6{bottom:314.232000px;}
.y7f{bottom:314.596050px;}
.ya0{bottom:319.500000px;}
.y35{bottom:320.446200px;}
.y114{bottom:320.628000px;}
.y5a{bottom:321.242100px;}
.ye3{bottom:322.670100px;}
.y96{bottom:325.996050px;}
.yf{bottom:331.058250px;}
.y7e{bottom:333.346050px;}
.y113{bottom:335.628000px;}
.yc5{bottom:336.138000px;}
.y9f{bottom:342.000000px;}
.y34{bottom:342.640200px;}
.y59{bottom:343.742100px;}
.y95{bottom:344.746050px;}
.ye2{bottom:345.476100px;}
.y112{bottom:350.628000px;}
.ye{bottom:354.458250px;}
.yc4{bottom:358.044000px;}
.y7d{bottom:360.750000px;}
.y94{bottom:363.496050px;}
.y9e{bottom:364.500000px;}
.y33{bottom:364.834200px;}
.y111{bottom:365.628000px;}
.y58{bottom:366.242100px;}
.ye1{bottom:368.282100px;}
.yd{bottom:377.858250px;}
.yc3{bottom:379.950000px;}
.y110{bottom:380.628000px;}
.y93{bottom:382.246050px;}
.y7c{bottom:383.394000px;}
.y9d{bottom:387.000000px;}
.y57{bottom:388.742100px;}
.ye0{bottom:391.088100px;}
.y32{bottom:395.538150px;}
.y10f{bottom:395.628000px;}
.y92{bottom:400.996050px;}
.yb{bottom:401.258250px;}
.yc2{bottom:401.856000px;}
.y7b{bottom:406.038000px;}
.y9c{bottom:409.500000px;}
.y10e{bottom:410.628000px;}
.y56{bottom:411.242100px;}
.ydf{bottom:413.894100px;}
.y31{bottom:413.988150px;}
.y91{bottom:419.746050px;}
.yc1{bottom:423.762000px;}
.yc{bottom:424.658250px;}
.y10d{bottom:425.628000px;}
.y7a{bottom:428.682000px;}
.y9b{bottom:432.000000px;}
.y30{bottom:432.438150px;}
.y55{bottom:433.742100px;}
.yde{bottom:436.700100px;}
.y90{bottom:438.496050px;}
.y10c{bottom:440.628000px;}
.yc0{bottom:445.668000px;}
.y2f{bottom:450.888150px;}
.y79{bottom:451.326000px;}
.y9a{bottom:454.500000px;}
.y10b{bottom:455.628000px;}
.y54{bottom:456.242100px;}
.y8f{bottom:457.246050px;}
.ydd{bottom:459.506100px;}
.ybf{bottom:467.574000px;}
.y2e{bottom:469.338150px;}
.y10a{bottom:470.628000px;}
.y78{bottom:473.970000px;}
.y8e{bottom:475.996050px;}
.y99{bottom:477.000000px;}
.y53{bottom:478.742100px;}
.ydc{bottom:482.312100px;}
.y109{bottom:485.628000px;}
.y2d{bottom:487.788150px;}
.ybe{bottom:489.480000px;}
.y8d{bottom:494.746050px;}
.y77{bottom:496.614000px;}
.y98{bottom:499.500000px;}
.y108{bottom:500.628000px;}
.ydb{bottom:505.118100px;}
.y2c{bottom:506.238150px;}
.y52{bottom:509.746050px;}
.ybd{bottom:511.386000px;}
.y107{bottom:515.628000px;}
.ya{bottom:518.244150px;}
.y76{bottom:519.258000px;}
.y8c{bottom:522.000000px;}
.y2b{bottom:524.688150px;}
.yda{bottom:527.924100px;}
.y51{bottom:528.496050px;}
.y106{bottom:530.628000px;}
.ybc{bottom:533.292000px;}
.y9{bottom:540.744150px;}
.y75{bottom:541.902000px;}
.y8b{bottom:544.500000px;}
.y105{bottom:545.628000px;}
.y50{bottom:547.246050px;}
.yd9{bottom:550.730100px;}
.y2a{bottom:551.648100px;}
.ybb{bottom:555.198000px;}
.y104{bottom:560.628000px;}
.y74{bottom:564.546000px;}
.y4f{bottom:565.996050px;}
.y8a{bottom:567.000000px;}
.yd8{bottom:573.536100px;}
.y29{bottom:573.842100px;}
.y103{bottom:575.628000px;}
.yba{bottom:577.104000px;}
.y4e{bottom:584.746050px;}
.y73{bottom:587.190000px;}
.y89{bottom:589.500000px;}
.y102{bottom:590.628000px;}
.yd7{bottom:596.342100px;}
.yb9{bottom:599.010000px;}
.y28{bottom:604.546050px;}
.y101{bottom:605.628000px;}
.y8{bottom:608.217150px;}
.y72{bottom:609.834000px;}
.y4d{bottom:612.000000px;}
.y100{bottom:620.628000px;}
.yb8{bottom:620.916000px;}
.y27{bottom:622.996050px;}
.yd6{bottom:627.646050px;}
.y7{bottom:630.721650px;}
.y71{bottom:632.478000px;}
.y4c{bottom:634.500000px;}
.yff{bottom:635.628000px;}
.y26{bottom:641.446050px;}
.yb7{bottom:642.822000px;}
.yd5{bottom:646.696050px;}
.yfe{bottom:650.628000px;}
.y6{bottom:653.226150px;}
.y70{bottom:655.122000px;}
.y4b{bottom:657.000000px;}
.y25{bottom:659.896050px;}
.yb6{bottom:664.728000px;}
.yfd{bottom:665.628000px;}
.yd4{bottom:665.746050px;}
.y5{bottom:675.730650px;}
.y6f{bottom:677.766000px;}
.y24{bottom:678.346050px;}
.y4a{bottom:679.500000px;}
.yfc{bottom:680.628000px;}
.yd3{bottom:684.796050px;}
.yb5{bottom:686.634000px;}
.yfb{bottom:695.628000px;}
.y4{bottom:698.235150px;}
.y6e{bottom:700.410000px;}
.y49{bottom:702.000000px;}
.yd2{bottom:703.846050px;}
.y23{bottom:705.360000px;}
.yb4{bottom:708.540000px;}
.yfa{bottom:710.628000px;}
.y3{bottom:720.739650px;}
.yd1{bottom:722.896050px;}
.y6d{bottom:723.054000px;}
.y48{bottom:724.500000px;}
.yf9{bottom:725.628000px;}
.y22{bottom:727.554000px;}
.yb3{bottom:730.446000px;}
.yf8{bottom:740.628000px;}
.yd0{bottom:741.946050px;}
.y2{bottom:743.244150px;}
.y6c{bottom:745.698000px;}
.y47{bottom:747.000000px;}
.y21{bottom:749.748000px;}
.yb2{bottom:752.352000px;}
.yf7{bottom:755.628000px;}
.y6b{bottom:768.342000px;}
.y46{bottom:769.500000px;}
.yf6{bottom:770.628000px;}
.y20{bottom:771.942000px;}
.yb1{bottom:774.258000px;}
.yf5{bottom:785.628000px;}
.y6a{bottom:790.986000px;}
.y45{bottom:792.000000px;}
.y1f{bottom:794.136000px;}
.yb0{bottom:796.164000px;}
.yf4{bottom:800.628000px;}
.y69{bottom:813.630000px;}
.y44{bottom:814.500000px;}
.yf3{bottom:815.628000px;}
.y1e{bottom:816.330000px;}
.yaf{bottom:818.070000px;}
.yf2{bottom:830.628000px;}
.y68{bottom:836.274000px;}
.y43{bottom:837.000000px;}
.y1d{bottom:838.524000px;}
.yae{bottom:839.976000px;}
.yf1{bottom:845.628000px;}
.y67{bottom:858.918000px;}
.y42{bottom:859.500000px;}
.yf0{bottom:860.628000px;}
.y1c{bottom:860.718000px;}
.yad{bottom:861.882000px;}
.yef{bottom:875.628000px;}
.y66{bottom:881.562000px;}
.y41{bottom:882.000000px;}
.y1b{bottom:882.912000px;}
.yac{bottom:883.788000px;}
.yee{bottom:890.628000px;}
.y65{bottom:904.206000px;}
.y40{bottom:904.500000px;}
.y1a{bottom:905.106000px;}
.yed{bottom:905.628000px;}
.yab{bottom:905.694000px;}
.y64{bottom:926.850000px;}
.y3f{bottom:927.000000px;}
.y19{bottom:927.300000px;}
.yaa{bottom:927.600000px;}
.hb{height:33.117188px;}
.h3{height:37.256836px;}
.h9{height:38.544000px;}
.ha{height:40.757812px;}
.h8{height:41.396484px;}
.h2{height:45.852539px;}
.h5{height:49.675781px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.h7{height:61.136719px;}
.h6{height:306.026700px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x4{left:82.386600px;}
.x9{left:97.263750px;}
.x6{left:112.500000px;}
.x3{left:116.244600px;}
.x7{left:127.386000px;}
.x8{left:142.263750px;}
.xa{left:180.531450px;}
.x2{left:330.747300px;}
.x5{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:166.400000pt;}
.ls2c{letter-spacing:-4.266667pt;}
.ls25{letter-spacing:-2.816000pt;}
.ls21{letter-spacing:-2.496000pt;}
.ls1f{letter-spacing:-2.304000pt;}
.lsa{letter-spacing:-2.112000pt;}
.ls24{letter-spacing:-1.088000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls29{letter-spacing:-0.768000pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.576000pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls2d{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.339200pt;}
.ls26{letter-spacing:0.358400pt;}
.ls16{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.832000pt;}
.ls10{letter-spacing:0.896000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.024000pt;}
.ls2b{letter-spacing:2.602667pt;}
.ls2a{letter-spacing:4.224000pt;}
.ls5{letter-spacing:5.868800pt;}
.ls1{letter-spacing:6.768000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls2{letter-spacing:9.546667pt;}
.ls3{letter-spacing:9.711288pt;}
.ws2f{word-spacing:-17.984000pt;}
.ws15{word-spacing:-16.448000pt;}
.ws30{word-spacing:-16.384000pt;}
.ws31{word-spacing:-16.256000pt;}
.ws33{word-spacing:-16.192000pt;}
.ws24{word-spacing:-16.128000pt;}
.ws34{word-spacing:-16.064000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws2a{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws32{word-spacing:-15.680000pt;}
.wsc{word-spacing:-15.552000pt;}
.ws17{word-spacing:-15.488000pt;}
.ws1f{word-spacing:-15.424000pt;}
.ws16{word-spacing:-13.173333pt;}
.ws38{word-spacing:-11.989333pt;}
.ws39{word-spacing:-10.538667pt;}
.ws3a{word-spacing:-10.325333pt;}
.wsb{word-spacing:-7.552000pt;}
.ws4{word-spacing:-6.768000pt;}
.ws37{word-spacing:-4.266667pt;}
.ws22{word-spacing:-1.024000pt;}
.ws28{word-spacing:-0.960000pt;}
.ws13{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.832000pt;}
.ws12{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.704000pt;}
.ws7{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.576000pt;}
.ws21{word-spacing:-0.512000pt;}
.ws2d{word-spacing:-0.448000pt;}
.ws1d{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.320000pt;}
.ws18{word-spacing:-0.256000pt;}
.ws10{word-spacing:-0.192000pt;}
.ws2e{word-spacing:-0.128000pt;}
.ws11{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:0.064000pt;}
.ws1e{word-spacing:0.128000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws3d{word-spacing:0.213333pt;}
.wsf{word-spacing:0.256000pt;}
.ws1b{word-spacing:0.320000pt;}
.wsa{word-spacing:0.384000pt;}
.ws20{word-spacing:0.448000pt;}
.ws25{word-spacing:0.512000pt;}
.ws27{word-spacing:0.576000pt;}
.ws1c{word-spacing:0.640000pt;}
.ws35{word-spacing:0.704000pt;}
.ws36{word-spacing:0.768000pt;}
.ws23{word-spacing:0.896000pt;}
.ws2b{word-spacing:1.088000pt;}
.ws6{word-spacing:1.600000pt;}
.ws2c{word-spacing:1.984000pt;}
.ws26{word-spacing:2.304000pt;}
.ws3c{word-spacing:2.986667pt;}
.ws5{word-spacing:3.360000pt;}
.ws3{word-spacing:3.733333pt;}
.ws3b{word-spacing:4.266667pt;}
.ws0{word-spacing:129.952000pt;}
._d{margin-left:-843.396267pt;}
._12{margin-left:-17.984000pt;}
._f{margin-left:-13.731200pt;}
._e{margin-left:-12.710400pt;}
._13{margin-left:-11.121067pt;}
._14{margin-left:-9.344000pt;}
._4{margin-left:-6.926400pt;}
._10{margin-left:-5.956800pt;}
._7{margin-left:-4.838400pt;}
._6{margin-left:-3.710400pt;}
._c{margin-left:-2.707200pt;}
._0{margin-left:-1.584000pt;}
._3{width:1.046400pt;}
._9{width:2.044800pt;}
._1{width:3.781333pt;}
._8{width:5.529600pt;}
._5{width:6.768000pt;}
._b{width:8.027200pt;}
._a{width:8.942400pt;}
._2{width:10.094400pt;}
._11{width:11.289600pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:388.605333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.ya9{bottom:104.000000pt;}
.ycf{bottom:104.069333pt;}
.yec{bottom:105.185867pt;}
.y88{bottom:105.415200pt;}
.y63{bottom:105.548533pt;}
.y18{bottom:107.074000pt;}
.y3e{bottom:107.289067pt;}
.yce{bottom:123.541333pt;}
.ya8{bottom:124.000000pt;}
.yeb{bottom:125.185867pt;}
.y87{bottom:125.415200pt;}
.y62{bottom:125.548533pt;}
.y3d{bottom:127.017067pt;}
.y17{bottom:127.874000pt;}
.ycd{bottom:143.013333pt;}
.ya7{bottom:144.000000pt;}
.yea{bottom:145.185867pt;}
.y86{bottom:145.415200pt;}
.y61{bottom:145.548533pt;}
.y3c{bottom:146.745067pt;}
.y16{bottom:148.674000pt;}
.ycc{bottom:162.485333pt;}
.ya6{bottom:164.000000pt;}
.ye9{bottom:165.185867pt;}
.y85{bottom:165.415200pt;}
.y60{bottom:165.548533pt;}
.y3b{bottom:166.473067pt;}
.y15{bottom:169.474000pt;}
.y119{bottom:171.664000pt;}
.ycb{bottom:181.957333pt;}
.ya5{bottom:184.000000pt;}
.y84{bottom:185.415200pt;}
.ye8{bottom:185.457867pt;}
.y5f{bottom:185.548533pt;}
.y3a{bottom:186.201067pt;}
.y118{bottom:188.330667pt;}
.y14{bottom:190.274000pt;}
.yca{bottom:201.429333pt;}
.ya4{bottom:204.000000pt;}
.y117{bottom:204.997333pt;}
.y5e{bottom:205.548533pt;}
.ye7{bottom:205.729867pt;}
.y39{bottom:205.929067pt;}
.y13{bottom:211.074000pt;}
.y83{bottom:212.974267pt;}
.yc9{bottom:220.901333pt;}
.y116{bottom:221.664000pt;}
.ya3{bottom:224.000000pt;}
.y5d{bottom:225.548533pt;}
.y38{bottom:225.657067pt;}
.ye6{bottom:226.001867pt;}
.y82{bottom:229.640933pt;}
.y12{bottom:231.874000pt;}
.yc8{bottom:240.373333pt;}
.ya2{bottom:244.000000pt;}
.y37{bottom:245.385067pt;}
.y5c{bottom:245.548533pt;}
.ye5{bottom:246.273867pt;}
.y81{bottom:246.307600pt;}
.y115{bottom:248.330667pt;}
.y11{bottom:252.674000pt;}
.yc7{bottom:259.845333pt;}
.y80{bottom:262.974267pt;}
.ya1{bottom:264.000000pt;}
.y36{bottom:265.113067pt;}
.y5b{bottom:265.548533pt;}
.ye4{bottom:266.545867pt;}
.y97{bottom:273.107600pt;}
.y10{bottom:273.474000pt;}
.yc6{bottom:279.317333pt;}
.y7f{bottom:279.640933pt;}
.ya0{bottom:284.000000pt;}
.y35{bottom:284.841067pt;}
.y114{bottom:285.002667pt;}
.y5a{bottom:285.548533pt;}
.ye3{bottom:286.817867pt;}
.y96{bottom:289.774267pt;}
.yf{bottom:294.274000pt;}
.y7e{bottom:296.307600pt;}
.y113{bottom:298.336000pt;}
.yc5{bottom:298.789333pt;}
.y9f{bottom:304.000000pt;}
.y34{bottom:304.569067pt;}
.y59{bottom:305.548533pt;}
.y95{bottom:306.440933pt;}
.ye2{bottom:307.089867pt;}
.y112{bottom:311.669333pt;}
.ye{bottom:315.074000pt;}
.yc4{bottom:318.261333pt;}
.y7d{bottom:320.666667pt;}
.y94{bottom:323.107600pt;}
.y9e{bottom:324.000000pt;}
.y33{bottom:324.297067pt;}
.y111{bottom:325.002667pt;}
.y58{bottom:325.548533pt;}
.ye1{bottom:327.361867pt;}
.yd{bottom:335.874000pt;}
.yc3{bottom:337.733333pt;}
.y110{bottom:338.336000pt;}
.y93{bottom:339.774267pt;}
.y7c{bottom:340.794667pt;}
.y9d{bottom:344.000000pt;}
.y57{bottom:345.548533pt;}
.ye0{bottom:347.633867pt;}
.y32{bottom:351.589467pt;}
.y10f{bottom:351.669333pt;}
.y92{bottom:356.440933pt;}
.yb{bottom:356.674000pt;}
.yc2{bottom:357.205333pt;}
.y7b{bottom:360.922667pt;}
.y9c{bottom:364.000000pt;}
.y10e{bottom:365.002667pt;}
.y56{bottom:365.548533pt;}
.ydf{bottom:367.905867pt;}
.y31{bottom:367.989467pt;}
.y91{bottom:373.107600pt;}
.yc1{bottom:376.677333pt;}
.yc{bottom:377.474000pt;}
.y10d{bottom:378.336000pt;}
.y7a{bottom:381.050667pt;}
.y9b{bottom:384.000000pt;}
.y30{bottom:384.389467pt;}
.y55{bottom:385.548533pt;}
.yde{bottom:388.177867pt;}
.y90{bottom:389.774267pt;}
.y10c{bottom:391.669333pt;}
.yc0{bottom:396.149333pt;}
.y2f{bottom:400.789467pt;}
.y79{bottom:401.178667pt;}
.y9a{bottom:404.000000pt;}
.y10b{bottom:405.002667pt;}
.y54{bottom:405.548533pt;}
.y8f{bottom:406.440933pt;}
.ydd{bottom:408.449867pt;}
.ybf{bottom:415.621333pt;}
.y2e{bottom:417.189467pt;}
.y10a{bottom:418.336000pt;}
.y78{bottom:421.306667pt;}
.y8e{bottom:423.107600pt;}
.y99{bottom:424.000000pt;}
.y53{bottom:425.548533pt;}
.ydc{bottom:428.721867pt;}
.y109{bottom:431.669333pt;}
.y2d{bottom:433.589467pt;}
.ybe{bottom:435.093333pt;}
.y8d{bottom:439.774267pt;}
.y77{bottom:441.434667pt;}
.y98{bottom:444.000000pt;}
.y108{bottom:445.002667pt;}
.ydb{bottom:448.993867pt;}
.y2c{bottom:449.989467pt;}
.y52{bottom:453.107600pt;}
.ybd{bottom:454.565333pt;}
.y107{bottom:458.336000pt;}
.ya{bottom:460.661467pt;}
.y76{bottom:461.562667pt;}
.y8c{bottom:464.000000pt;}
.y2b{bottom:466.389467pt;}
.yda{bottom:469.265867pt;}
.y51{bottom:469.774267pt;}
.y106{bottom:471.669333pt;}
.ybc{bottom:474.037333pt;}
.y9{bottom:480.661467pt;}
.y75{bottom:481.690667pt;}
.y8b{bottom:484.000000pt;}
.y105{bottom:485.002667pt;}
.y50{bottom:486.440933pt;}
.yd9{bottom:489.537867pt;}
.y2a{bottom:490.353867pt;}
.ybb{bottom:493.509333pt;}
.y104{bottom:498.336000pt;}
.y74{bottom:501.818667pt;}
.y4f{bottom:503.107600pt;}
.y8a{bottom:504.000000pt;}
.yd8{bottom:509.809867pt;}
.y29{bottom:510.081867pt;}
.y103{bottom:511.669333pt;}
.yba{bottom:512.981333pt;}
.y4e{bottom:519.774267pt;}
.y73{bottom:521.946667pt;}
.y89{bottom:524.000000pt;}
.y102{bottom:525.002667pt;}
.yd7{bottom:530.081867pt;}
.yb9{bottom:532.453333pt;}
.y28{bottom:537.374267pt;}
.y101{bottom:538.336000pt;}
.y8{bottom:540.637467pt;}
.y72{bottom:542.074667pt;}
.y4d{bottom:544.000000pt;}
.y100{bottom:551.669333pt;}
.yb8{bottom:551.925333pt;}
.y27{bottom:553.774267pt;}
.yd6{bottom:557.907600pt;}
.y7{bottom:560.641467pt;}
.y71{bottom:562.202667pt;}
.y4c{bottom:564.000000pt;}
.yff{bottom:565.002667pt;}
.y26{bottom:570.174267pt;}
.yb7{bottom:571.397333pt;}
.yd5{bottom:574.840933pt;}
.yfe{bottom:578.336000pt;}
.y6{bottom:580.645467pt;}
.y70{bottom:582.330667pt;}
.y4b{bottom:584.000000pt;}
.y25{bottom:586.574267pt;}
.yb6{bottom:590.869333pt;}
.yfd{bottom:591.669333pt;}
.yd4{bottom:591.774267pt;}
.y5{bottom:600.649467pt;}
.y6f{bottom:602.458667pt;}
.y24{bottom:602.974267pt;}
.y4a{bottom:604.000000pt;}
.yfc{bottom:605.002667pt;}
.yd3{bottom:608.707600pt;}
.yb5{bottom:610.341333pt;}
.yfb{bottom:618.336000pt;}
.y4{bottom:620.653467pt;}
.y6e{bottom:622.586667pt;}
.y49{bottom:624.000000pt;}
.yd2{bottom:625.640933pt;}
.y23{bottom:626.986667pt;}
.yb4{bottom:629.813333pt;}
.yfa{bottom:631.669333pt;}
.y3{bottom:640.657467pt;}
.yd1{bottom:642.574267pt;}
.y6d{bottom:642.714667pt;}
.y48{bottom:644.000000pt;}
.yf9{bottom:645.002667pt;}
.y22{bottom:646.714667pt;}
.yb3{bottom:649.285333pt;}
.yf8{bottom:658.336000pt;}
.yd0{bottom:659.507600pt;}
.y2{bottom:660.661467pt;}
.y6c{bottom:662.842667pt;}
.y47{bottom:664.000000pt;}
.y21{bottom:666.442667pt;}
.yb2{bottom:668.757333pt;}
.yf7{bottom:671.669333pt;}
.y6b{bottom:682.970667pt;}
.y46{bottom:684.000000pt;}
.yf6{bottom:685.002667pt;}
.y20{bottom:686.170667pt;}
.yb1{bottom:688.229333pt;}
.yf5{bottom:698.336000pt;}
.y6a{bottom:703.098667pt;}
.y45{bottom:704.000000pt;}
.y1f{bottom:705.898667pt;}
.yb0{bottom:707.701333pt;}
.yf4{bottom:711.669333pt;}
.y69{bottom:723.226667pt;}
.y44{bottom:724.000000pt;}
.yf3{bottom:725.002667pt;}
.y1e{bottom:725.626667pt;}
.yaf{bottom:727.173333pt;}
.yf2{bottom:738.336000pt;}
.y68{bottom:743.354667pt;}
.y43{bottom:744.000000pt;}
.y1d{bottom:745.354667pt;}
.yae{bottom:746.645333pt;}
.yf1{bottom:751.669333pt;}
.y67{bottom:763.482667pt;}
.y42{bottom:764.000000pt;}
.yf0{bottom:765.002667pt;}
.y1c{bottom:765.082667pt;}
.yad{bottom:766.117333pt;}
.yef{bottom:778.336000pt;}
.y66{bottom:783.610667pt;}
.y41{bottom:784.000000pt;}
.y1b{bottom:784.810667pt;}
.yac{bottom:785.589333pt;}
.yee{bottom:791.669333pt;}
.y65{bottom:803.738667pt;}
.y40{bottom:804.000000pt;}
.y1a{bottom:804.538667pt;}
.yed{bottom:805.002667pt;}
.yab{bottom:805.061333pt;}
.y64{bottom:823.866667pt;}
.y3f{bottom:824.000000pt;}
.y19{bottom:824.266667pt;}
.yaa{bottom:824.533333pt;}
.hb{height:29.437500pt;}
.h3{height:33.117188pt;}
.h9{height:34.261333pt;}
.ha{height:36.229167pt;}
.h8{height:36.796875pt;}
.h2{height:40.757812pt;}
.h5{height:44.156250pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.h7{height:54.343750pt;}
.h6{height:272.023733pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x4{left:73.232533pt;}
.x9{left:86.456667pt;}
.x6{left:100.000000pt;}
.x3{left:103.328533pt;}
.x7{left:113.232000pt;}
.x8{left:126.456667pt;}
.xa{left:160.472400pt;}
.x2{left:293.997600pt;}
.x5{left:556.250000pt;}
}




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