
    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_c6d88a3f686b679c744a3b27.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_4de1a636ca20534e17fdd399.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_02d0ef41c527648aa03f9902.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_bb9872a2fe1d55c0eba3312c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_158b007ce413299e16ed4b80.woff')format("woff");}.ff5{font-family:ff5;line-height:1.045000;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_d11b9f33fe93a6d31bab1079.woff')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_2d45ab8b25b70b2fe3bdee9a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.816000;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_21b75231424d0ffa183ef2dd.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2db73e7595903e49a2b9b91d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_584777dffd0cbd6c49953a95.woff')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_b20a84b680ec049cfa358c36.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_e95db10063b5eac0cc50238a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.082520;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:180.000000px;}
.ls1e{letter-spacing:-3.816000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls2f{letter-spacing:-1.008000px;}
.ls17{letter-spacing:-0.864000px;}
.ls29{letter-spacing:-0.792000px;}
.ls22{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.600000px;}
.ls2a{letter-spacing:-0.576000px;}
.ls26{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.lsd{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.ls31{letter-spacing:0.864000px;}
.ls9{letter-spacing:0.936000px;}
.lsb{letter-spacing:1.008000px;}
.ls7{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.140000px;}
.ls23{letter-spacing:2.448000px;}
.ls30{letter-spacing:2.736000px;}
.ls24{letter-spacing:3.960000px;}
.ls2c{letter-spacing:4.320000px;}
.ls19{letter-spacing:4.608000px;}
.ls32{letter-spacing:4.752000px;}
.ls25{letter-spacing:4.896000px;}
.ls28{letter-spacing:5.112000px;}
.ls1{letter-spacing:5.280000px;}
.ls21{letter-spacing:5.904000px;}
.ls2b{letter-spacing:6.552000px;}
.ls1f{letter-spacing:6.696000px;}
.lsc{letter-spacing:8.460000px;}
.ls27{letter-spacing:9.072000px;}
.ls2{letter-spacing:9.249000px;}
.ls2d{letter-spacing:9.360000px;}
.ls5{letter-spacing:10.589352px;}
.ls0{letter-spacing:10.740000px;}
.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;}
}
.ws1e{word-spacing:-49.320000px;}
.ws13{word-spacing:-49.104000px;}
.ws10{word-spacing:-49.032000px;}
.wse{word-spacing:-48.960000px;}
.wsb{word-spacing:-48.888000px;}
.ws12{word-spacing:-48.816000px;}
.ws15{word-spacing:-48.744000px;}
.wsa{word-spacing:-48.672000px;}
.ws1a{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.wsf{word-spacing:-48.456000px;}
.ws17{word-spacing:-48.384000px;}
.ws4{word-spacing:-48.312000px;}
.ws3{word-spacing:-48.240000px;}
.wsd{word-spacing:-48.168000px;}
.ws9{word-spacing:-48.096000px;}
.ws11{word-spacing:-47.808000px;}
.ws1d{word-spacing:-47.520000px;}
.ws7{word-spacing:-40.440000px;}
.ws1c{word-spacing:-35.640000px;}
.ws21{word-spacing:-32.352000px;}
.ws20{word-spacing:-25.320000px;}
.ws1b{word-spacing:-20.664000px;}
.ws1f{word-spacing:-20.520000px;}
.ws16{word-spacing:-20.448000px;}
.ws8{word-spacing:-20.232000px;}
.ws19{word-spacing:-20.160000px;}
.ws14{word-spacing:-19.872000px;}
.ws18{word-spacing:-19.656000px;}
.ws2{word-spacing:-17.460000px;}
.wsc{word-spacing:-16.416000px;}
.ws22{word-spacing:-12.336000px;}
.ws0{word-spacing:-8.520000px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:184.560000px;}
._0{margin-left:-948.900000px;}
._d{margin-left:-13.872000px;}
._f{margin-left:-11.748000px;}
._e{margin-left:-8.520000px;}
._9{margin-left:-7.152000px;}
._1{margin-left:-5.940000px;}
._b{margin-left:-4.104000px;}
._7{margin-left:-3.000000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._5{width:3.120000px;}
._4{width:4.200000px;}
._c{width:5.400000px;}
._a{width:6.408000px;}
._6{width:8.400000px;}
._8{width:10.308000px;}
._10{width:11.808000px;}
._11{width:15.408000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.yd0{bottom:117.000000px;}
.yf3{bottom:117.977700px;}
.y10b{bottom:119.256000px;}
.y1f{bottom:120.362550px;}
.y8c{bottom:121.782300px;}
.y44{bottom:122.418000px;}
.yac{bottom:122.466000px;}
.y67{bottom:122.814300px;}
.y10a{bottom:134.256000px;}
.ycf{bottom:139.500000px;}
.yf2{bottom:141.071700px;}
.y1e{bottom:143.006550px;}
.y8b{bottom:143.688300px;}
.y43{bottom:144.918000px;}
.yab{bottom:144.966000px;}
.y66{bottom:145.458300px;}
.y109{bottom:149.256000px;}
.yce{bottom:162.000000px;}
.yf1{bottom:164.165700px;}
.y108{bottom:164.256000px;}
.y8a{bottom:165.594300px;}
.y1d{bottom:165.650550px;}
.y42{bottom:166.662000px;}
.yaa{bottom:166.710000px;}
.y65{bottom:168.102300px;}
.y107{bottom:179.256000px;}
.ycd{bottom:184.500000px;}
.yf0{bottom:187.259700px;}
.y89{bottom:187.500300px;}
.y1c{bottom:188.294550px;}
.y41{bottom:188.406000px;}
.ya9{bottom:188.454000px;}
.y64{bottom:190.746300px;}
.y106{bottom:194.256000px;}
.ycc{bottom:207.000000px;}
.y105{bottom:209.256000px;}
.y88{bottom:209.400300px;}
.y40{bottom:210.150000px;}
.ya8{bottom:210.198000px;}
.yef{bottom:210.353700px;}
.y1b{bottom:210.938550px;}
.y12e{bottom:215.622000px;}
.y104{bottom:224.256000px;}
.y63{bottom:224.802300px;}
.y87{bottom:226.800300px;}
.ycb{bottom:229.500000px;}
.y3f{bottom:231.894000px;}
.ya7{bottom:231.942000px;}
.yee{bottom:233.447700px;}
.y1a{bottom:233.582550px;}
.y12d{bottom:234.372000px;}
.y103{bottom:239.256000px;}
.y62{bottom:247.446300px;}
.yca{bottom:252.000000px;}
.y12c{bottom:253.122000px;}
.y3e{bottom:253.638000px;}
.ya6{bottom:253.686000px;}
.y102{bottom:254.256000px;}
.y19{bottom:256.226550px;}
.yed{bottom:256.541700px;}
.y101{bottom:269.256000px;}
.y61{bottom:270.090300px;}
.y86{bottom:270.420000px;}
.y12b{bottom:271.872000px;}
.yc9{bottom:274.500000px;}
.y3d{bottom:275.382000px;}
.ya5{bottom:275.430000px;}
.y18{bottom:278.870550px;}
.yec{bottom:279.635700px;}
.y100{bottom:284.256000px;}
.y85{bottom:292.326000px;}
.y60{bottom:292.734300px;}
.yc8{bottom:297.000000px;}
.y3c{bottom:297.126000px;}
.ya4{bottom:297.174000px;}
.yff{bottom:299.256000px;}
.y17{bottom:301.514550px;}
.y12a{bottom:301.872000px;}
.yeb{bottom:302.729700px;}
.y84{bottom:314.232000px;}
.yfe{bottom:314.256000px;}
.y5f{bottom:315.378300px;}
.y3b{bottom:318.870000px;}
.ya3{bottom:318.918000px;}
.yc7{bottom:319.500000px;}
.y16{bottom:324.158550px;}
.yea{bottom:325.823700px;}
.yfd{bottom:329.256000px;}
.y83{bottom:336.138000px;}
.y5e{bottom:338.022300px;}
.y3a{bottom:340.614000px;}
.ya2{bottom:340.662000px;}
.yc6{bottom:342.000000px;}
.y129{bottom:343.122000px;}
.y15{bottom:346.802550px;}
.ye9{bottom:348.917700px;}
.yfc{bottom:350.628000px;}
.y82{bottom:358.044000px;}
.y5d{bottom:360.666300px;}
.y128{bottom:361.872000px;}
.y39{bottom:362.358000px;}
.ya1{bottom:362.406000px;}
.yc5{bottom:364.500000px;}
.y14{bottom:369.446550px;}
.ye8{bottom:372.011700px;}
.y81{bottom:379.950000px;}
.y127{bottom:380.622000px;}
.y5c{bottom:383.310300px;}
.y38{bottom:384.102000px;}
.ya0{bottom:384.150000px;}
.yc4{bottom:387.000000px;}
.y13{bottom:392.090550px;}
.ye7{bottom:395.105700px;}
.yfb{bottom:395.628000px;}
.y126{bottom:399.372000px;}
.y80{bottom:401.856000px;}
.y37{bottom:405.846000px;}
.y9f{bottom:405.894000px;}
.y5b{bottom:405.954300px;}
.yc3{bottom:409.500000px;}
.yfa{bottom:410.628000px;}
.y12{bottom:414.734550px;}
.y125{bottom:418.122000px;}
.ye6{bottom:418.199700px;}
.y7f{bottom:423.762000px;}
.yf9{bottom:425.628000px;}
.y36{bottom:427.590000px;}
.y9e{bottom:427.638000px;}
.y5a{bottom:428.598300px;}
.yc2{bottom:432.000000px;}
.y124{bottom:436.872000px;}
.y11{bottom:437.378550px;}
.yf8{bottom:440.628000px;}
.ye5{bottom:441.299700px;}
.y7e{bottom:445.668000px;}
.y35{bottom:449.334000px;}
.y9d{bottom:449.382000px;}
.y59{bottom:451.242300px;}
.yc1{bottom:454.500000px;}
.y123{bottom:455.622000px;}
.yf7{bottom:455.628000px;}
.y10{bottom:460.022550px;}
.y7d{bottom:467.574000px;}
.yf6{bottom:470.628000px;}
.y34{bottom:471.078000px;}
.y9c{bottom:471.126000px;}
.y58{bottom:473.886300px;}
.y122{bottom:474.372000px;}
.yc0{bottom:477.000000px;}
.yf{bottom:482.666550px;}
.yf5{bottom:485.628000px;}
.ye4{bottom:487.614000px;}
.y7c{bottom:489.480000px;}
.y33{bottom:492.822000px;}
.y9b{bottom:492.870000px;}
.y121{bottom:493.122000px;}
.y57{bottom:496.530300px;}
.ybf{bottom:499.500000px;}
.yf4{bottom:500.628000px;}
.ye{bottom:505.310550px;}
.ye3{bottom:510.708000px;}
.y7b{bottom:511.386000px;}
.y120{bottom:511.872000px;}
.y32{bottom:514.566000px;}
.y9a{bottom:514.614000px;}
.y56{bottom:519.174300px;}
.ybe{bottom:522.000000px;}
.yd{bottom:527.954550px;}
.y11f{bottom:530.622000px;}
.y7a{bottom:533.292000px;}
.ye2{bottom:533.802000px;}
.y31{bottom:536.310000px;}
.y99{bottom:536.358000px;}
.y55{bottom:541.818300px;}
.ybd{bottom:544.500000px;}
.y11e{bottom:549.372000px;}
.yc{bottom:550.598550px;}
.y79{bottom:555.198000px;}
.ye1{bottom:556.896000px;}
.y30{bottom:558.054000px;}
.y98{bottom:558.102000px;}
.y54{bottom:564.462300px;}
.ybc{bottom:567.000000px;}
.y11d{bottom:568.122000px;}
.yb{bottom:573.242550px;}
.y78{bottom:577.104000px;}
.y2f{bottom:579.798000px;}
.y97{bottom:579.846000px;}
.ye0{bottom:579.990000px;}
.y11c{bottom:586.872000px;}
.y53{bottom:587.106300px;}
.ybb{bottom:589.500000px;}
.ya{bottom:595.886550px;}
.y77{bottom:599.010000px;}
.y2e{bottom:601.542000px;}
.y96{bottom:601.590000px;}
.ydf{bottom:603.084000px;}
.y11b{bottom:605.622000px;}
.y52{bottom:609.750300px;}
.yba{bottom:612.000000px;}
.y9{bottom:618.530550px;}
.y7{bottom:618.818550px;}
.y76{bottom:620.916000px;}
.y2d{bottom:623.286000px;}
.y95{bottom:623.334000px;}
.y11a{bottom:624.372000px;}
.yde{bottom:626.178000px;}
.y51{bottom:632.400300px;}
.yb9{bottom:634.500000px;}
.y8{bottom:641.174550px;}
.y75{bottom:642.822000px;}
.y119{bottom:643.122000px;}
.y2c{bottom:645.030000px;}
.y94{bottom:645.078000px;}
.ydd{bottom:649.272000px;}
.yb8{bottom:657.000000px;}
.y118{bottom:661.872000px;}
.y74{bottom:664.728000px;}
.y2b{bottom:666.774000px;}
.y93{bottom:666.822000px;}
.ydc{bottom:672.366000px;}
.y50{bottom:677.766000px;}
.yb7{bottom:679.500000px;}
.y117{bottom:680.622000px;}
.y73{bottom:686.634000px;}
.y2a{bottom:688.518000px;}
.y92{bottom:688.566000px;}
.ydb{bottom:695.460000px;}
.y116{bottom:699.372000px;}
.y4f{bottom:700.410000px;}
.yb6{bottom:702.000000px;}
.y72{bottom:708.540000px;}
.y6{bottom:708.968550px;}
.y29{bottom:710.262000px;}
.y91{bottom:710.310000px;}
.y115{bottom:718.122000px;}
.yda{bottom:718.554000px;}
.y4e{bottom:723.054000px;}
.yb5{bottom:724.500000px;}
.y5{bottom:727.718550px;}
.y71{bottom:730.446000px;}
.y28{bottom:732.006000px;}
.y90{bottom:732.054000px;}
.y114{bottom:736.872000px;}
.yd9{bottom:741.648000px;}
.y4d{bottom:745.698000px;}
.yb4{bottom:747.000000px;}
.y70{bottom:752.352000px;}
.y27{bottom:753.750000px;}
.y8f{bottom:753.798000px;}
.y113{bottom:755.622000px;}
.yd8{bottom:764.742000px;}
.y4c{bottom:768.342000px;}
.yb3{bottom:769.500000px;}
.y4{bottom:769.854300px;}
.y6f{bottom:774.258000px;}
.y112{bottom:774.372000px;}
.y26{bottom:775.500000px;}
.y8e{bottom:775.542000px;}
.yd7{bottom:787.836000px;}
.y4b{bottom:790.986000px;}
.yb2{bottom:792.000000px;}
.y3{bottom:792.354300px;}
.y6e{bottom:796.164000px;}
.y8d{bottom:797.286000px;}
.y111{bottom:799.500000px;}
.yd6{bottom:810.930000px;}
.y4a{bottom:813.630000px;}
.yb1{bottom:814.500000px;}
.y6d{bottom:818.070000px;}
.y25{bottom:819.030000px;}
.yd5{bottom:834.024000px;}
.y49{bottom:836.274000px;}
.yb0{bottom:837.000000px;}
.y6c{bottom:839.976000px;}
.y24{bottom:840.774000px;}
.y110{bottom:844.500000px;}
.yd4{bottom:857.118000px;}
.y48{bottom:858.918000px;}
.y2{bottom:859.500000px;}
.y6b{bottom:861.882000px;}
.y23{bottom:862.518000px;}
.y10f{bottom:874.500000px;}
.yd3{bottom:880.212000px;}
.y47{bottom:881.562000px;}
.yaf{bottom:882.000000px;}
.y6a{bottom:883.788000px;}
.y22{bottom:884.262000px;}
.y10e{bottom:889.500000px;}
.yd2{bottom:903.306000px;}
.y46{bottom:904.206000px;}
.yae{bottom:904.500000px;}
.y69{bottom:905.694000px;}
.y21{bottom:906.006000px;}
.y10d{bottom:919.500000px;}
.yd1{bottom:926.400000px;}
.y45{bottom:926.850000px;}
.yad{bottom:927.000000px;}
.y68{bottom:927.600000px;}
.y20{bottom:927.750000px;}
.y10c{bottom:934.500000px;}
.h6{height:39.888000px;}
.h7{height:40.757812px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h2{height:101.894531px;}
.h5{height:342.453024px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x6{left:82.368000px;}
.x2{left:112.500000px;}
.x4{left:127.383450px;}
.x8{left:135.511950px;}
.x7{left:142.267950px;}
.x3{left:159.225450px;}
.x1{left:635.390550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:160.000000pt;}
.ls1e{letter-spacing:-3.392000pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls2f{letter-spacing:-0.896000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls29{letter-spacing:-0.704000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls2a{letter-spacing:-0.512000pt;}
.ls26{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls31{letter-spacing:0.768000pt;}
.ls9{letter-spacing:0.832000pt;}
.lsb{letter-spacing:0.896000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.013333pt;}
.ls23{letter-spacing:2.176000pt;}
.ls30{letter-spacing:2.432000pt;}
.ls24{letter-spacing:3.520000pt;}
.ls2c{letter-spacing:3.840000pt;}
.ls19{letter-spacing:4.096000pt;}
.ls32{letter-spacing:4.224000pt;}
.ls25{letter-spacing:4.352000pt;}
.ls28{letter-spacing:4.544000pt;}
.ls1{letter-spacing:4.693333pt;}
.ls21{letter-spacing:5.248000pt;}
.ls2b{letter-spacing:5.824000pt;}
.ls1f{letter-spacing:5.952000pt;}
.lsc{letter-spacing:7.520000pt;}
.ls27{letter-spacing:8.064000pt;}
.ls2{letter-spacing:8.221333pt;}
.ls2d{letter-spacing:8.320000pt;}
.ls5{letter-spacing:9.412757pt;}
.ls0{letter-spacing:9.546667pt;}
.ws1e{word-spacing:-43.840000pt;}
.ws13{word-spacing:-43.648000pt;}
.ws10{word-spacing:-43.584000pt;}
.wse{word-spacing:-43.520000pt;}
.wsb{word-spacing:-43.456000pt;}
.ws12{word-spacing:-43.392000pt;}
.ws15{word-spacing:-43.328000pt;}
.wsa{word-spacing:-43.264000pt;}
.ws1a{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.wsf{word-spacing:-43.072000pt;}
.ws17{word-spacing:-43.008000pt;}
.ws4{word-spacing:-42.944000pt;}
.ws3{word-spacing:-42.880000pt;}
.wsd{word-spacing:-42.816000pt;}
.ws9{word-spacing:-42.752000pt;}
.ws11{word-spacing:-42.496000pt;}
.ws1d{word-spacing:-42.240000pt;}
.ws7{word-spacing:-35.946667pt;}
.ws1c{word-spacing:-31.680000pt;}
.ws21{word-spacing:-28.757333pt;}
.ws20{word-spacing:-22.506667pt;}
.ws1b{word-spacing:-18.368000pt;}
.ws1f{word-spacing:-18.240000pt;}
.ws16{word-spacing:-18.176000pt;}
.ws8{word-spacing:-17.984000pt;}
.ws19{word-spacing:-17.920000pt;}
.ws14{word-spacing:-17.664000pt;}
.ws18{word-spacing:-17.472000pt;}
.ws2{word-spacing:-15.520000pt;}
.wsc{word-spacing:-14.592000pt;}
.ws22{word-spacing:-10.965333pt;}
.ws0{word-spacing:-7.573333pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:164.053333pt;}
._0{margin-left:-843.466667pt;}
._d{margin-left:-12.330667pt;}
._f{margin-left:-10.442667pt;}
._e{margin-left:-7.573333pt;}
._9{margin-left:-6.357333pt;}
._1{margin-left:-5.280000pt;}
._b{margin-left:-3.648000pt;}
._7{margin-left:-2.666667pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._5{width:2.773333pt;}
._4{width:3.733333pt;}
._c{width:4.800000pt;}
._a{width:5.696000pt;}
._6{width:7.466667pt;}
._8{width:9.162667pt;}
._10{width:10.496000pt;}
._11{width:13.696000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.yd0{bottom:104.000000pt;}
.yf3{bottom:104.869067pt;}
.y10b{bottom:106.005333pt;}
.y1f{bottom:106.988933pt;}
.y8c{bottom:108.250933pt;}
.y44{bottom:108.816000pt;}
.yac{bottom:108.858667pt;}
.y67{bottom:109.168267pt;}
.y10a{bottom:119.338667pt;}
.ycf{bottom:124.000000pt;}
.yf2{bottom:125.397067pt;}
.y1e{bottom:127.116933pt;}
.y8b{bottom:127.722933pt;}
.y43{bottom:128.816000pt;}
.yab{bottom:128.858667pt;}
.y66{bottom:129.296267pt;}
.y109{bottom:132.672000pt;}
.yce{bottom:144.000000pt;}
.yf1{bottom:145.925067pt;}
.y108{bottom:146.005333pt;}
.y8a{bottom:147.194933pt;}
.y1d{bottom:147.244933pt;}
.y42{bottom:148.144000pt;}
.yaa{bottom:148.186667pt;}
.y65{bottom:149.424267pt;}
.y107{bottom:159.338667pt;}
.ycd{bottom:164.000000pt;}
.yf0{bottom:166.453067pt;}
.y89{bottom:166.666933pt;}
.y1c{bottom:167.372933pt;}
.y41{bottom:167.472000pt;}
.ya9{bottom:167.514667pt;}
.y64{bottom:169.552267pt;}
.y106{bottom:172.672000pt;}
.ycc{bottom:184.000000pt;}
.y105{bottom:186.005333pt;}
.y88{bottom:186.133600pt;}
.y40{bottom:186.800000pt;}
.ya8{bottom:186.842667pt;}
.yef{bottom:186.981067pt;}
.y1b{bottom:187.500933pt;}
.y12e{bottom:191.664000pt;}
.y104{bottom:199.338667pt;}
.y63{bottom:199.824267pt;}
.y87{bottom:201.600267pt;}
.ycb{bottom:204.000000pt;}
.y3f{bottom:206.128000pt;}
.ya7{bottom:206.170667pt;}
.yee{bottom:207.509067pt;}
.y1a{bottom:207.628933pt;}
.y12d{bottom:208.330667pt;}
.y103{bottom:212.672000pt;}
.y62{bottom:219.952267pt;}
.yca{bottom:224.000000pt;}
.y12c{bottom:224.997333pt;}
.y3e{bottom:225.456000pt;}
.ya6{bottom:225.498667pt;}
.y102{bottom:226.005333pt;}
.y19{bottom:227.756933pt;}
.yed{bottom:228.037067pt;}
.y101{bottom:239.338667pt;}
.y61{bottom:240.080267pt;}
.y86{bottom:240.373333pt;}
.y12b{bottom:241.664000pt;}
.yc9{bottom:244.000000pt;}
.y3d{bottom:244.784000pt;}
.ya5{bottom:244.826667pt;}
.y18{bottom:247.884933pt;}
.yec{bottom:248.565067pt;}
.y100{bottom:252.672000pt;}
.y85{bottom:259.845333pt;}
.y60{bottom:260.208267pt;}
.yc8{bottom:264.000000pt;}
.y3c{bottom:264.112000pt;}
.ya4{bottom:264.154667pt;}
.yff{bottom:266.005333pt;}
.y17{bottom:268.012933pt;}
.y12a{bottom:268.330667pt;}
.yeb{bottom:269.093067pt;}
.y84{bottom:279.317333pt;}
.yfe{bottom:279.338667pt;}
.y5f{bottom:280.336267pt;}
.y3b{bottom:283.440000pt;}
.ya3{bottom:283.482667pt;}
.yc7{bottom:284.000000pt;}
.y16{bottom:288.140933pt;}
.yea{bottom:289.621067pt;}
.yfd{bottom:292.672000pt;}
.y83{bottom:298.789333pt;}
.y5e{bottom:300.464267pt;}
.y3a{bottom:302.768000pt;}
.ya2{bottom:302.810667pt;}
.yc6{bottom:304.000000pt;}
.y129{bottom:304.997333pt;}
.y15{bottom:308.268933pt;}
.ye9{bottom:310.149067pt;}
.yfc{bottom:311.669333pt;}
.y82{bottom:318.261333pt;}
.y5d{bottom:320.592267pt;}
.y128{bottom:321.664000pt;}
.y39{bottom:322.096000pt;}
.ya1{bottom:322.138667pt;}
.yc5{bottom:324.000000pt;}
.y14{bottom:328.396933pt;}
.ye8{bottom:330.677067pt;}
.y81{bottom:337.733333pt;}
.y127{bottom:338.330667pt;}
.y5c{bottom:340.720267pt;}
.y38{bottom:341.424000pt;}
.ya0{bottom:341.466667pt;}
.yc4{bottom:344.000000pt;}
.y13{bottom:348.524933pt;}
.ye7{bottom:351.205067pt;}
.yfb{bottom:351.669333pt;}
.y126{bottom:354.997333pt;}
.y80{bottom:357.205333pt;}
.y37{bottom:360.752000pt;}
.y9f{bottom:360.794667pt;}
.y5b{bottom:360.848267pt;}
.yc3{bottom:364.000000pt;}
.yfa{bottom:365.002667pt;}
.y12{bottom:368.652933pt;}
.y125{bottom:371.664000pt;}
.ye6{bottom:371.733067pt;}
.y7f{bottom:376.677333pt;}
.yf9{bottom:378.336000pt;}
.y36{bottom:380.080000pt;}
.y9e{bottom:380.122667pt;}
.y5a{bottom:380.976267pt;}
.yc2{bottom:384.000000pt;}
.y124{bottom:388.330667pt;}
.y11{bottom:388.780933pt;}
.yf8{bottom:391.669333pt;}
.ye5{bottom:392.266400pt;}
.y7e{bottom:396.149333pt;}
.y35{bottom:399.408000pt;}
.y9d{bottom:399.450667pt;}
.y59{bottom:401.104267pt;}
.yc1{bottom:404.000000pt;}
.y123{bottom:404.997333pt;}
.yf7{bottom:405.002667pt;}
.y10{bottom:408.908933pt;}
.y7d{bottom:415.621333pt;}
.yf6{bottom:418.336000pt;}
.y34{bottom:418.736000pt;}
.y9c{bottom:418.778667pt;}
.y58{bottom:421.232267pt;}
.y122{bottom:421.664000pt;}
.yc0{bottom:424.000000pt;}
.yf{bottom:429.036933pt;}
.yf5{bottom:431.669333pt;}
.ye4{bottom:433.434667pt;}
.y7c{bottom:435.093333pt;}
.y33{bottom:438.064000pt;}
.y9b{bottom:438.106667pt;}
.y121{bottom:438.330667pt;}
.y57{bottom:441.360267pt;}
.ybf{bottom:444.000000pt;}
.yf4{bottom:445.002667pt;}
.ye{bottom:449.164933pt;}
.ye3{bottom:453.962667pt;}
.y7b{bottom:454.565333pt;}
.y120{bottom:454.997333pt;}
.y32{bottom:457.392000pt;}
.y9a{bottom:457.434667pt;}
.y56{bottom:461.488267pt;}
.ybe{bottom:464.000000pt;}
.yd{bottom:469.292933pt;}
.y11f{bottom:471.664000pt;}
.y7a{bottom:474.037333pt;}
.ye2{bottom:474.490667pt;}
.y31{bottom:476.720000pt;}
.y99{bottom:476.762667pt;}
.y55{bottom:481.616267pt;}
.ybd{bottom:484.000000pt;}
.y11e{bottom:488.330667pt;}
.yc{bottom:489.420933pt;}
.y79{bottom:493.509333pt;}
.ye1{bottom:495.018667pt;}
.y30{bottom:496.048000pt;}
.y98{bottom:496.090667pt;}
.y54{bottom:501.744267pt;}
.ybc{bottom:504.000000pt;}
.y11d{bottom:504.997333pt;}
.yb{bottom:509.548933pt;}
.y78{bottom:512.981333pt;}
.y2f{bottom:515.376000pt;}
.y97{bottom:515.418667pt;}
.ye0{bottom:515.546667pt;}
.y11c{bottom:521.664000pt;}
.y53{bottom:521.872267pt;}
.ybb{bottom:524.000000pt;}
.ya{bottom:529.676933pt;}
.y77{bottom:532.453333pt;}
.y2e{bottom:534.704000pt;}
.y96{bottom:534.746667pt;}
.ydf{bottom:536.074667pt;}
.y11b{bottom:538.330667pt;}
.y52{bottom:542.000267pt;}
.yba{bottom:544.000000pt;}
.y9{bottom:549.804933pt;}
.y7{bottom:550.060933pt;}
.y76{bottom:551.925333pt;}
.y2d{bottom:554.032000pt;}
.y95{bottom:554.074667pt;}
.y11a{bottom:554.997333pt;}
.yde{bottom:556.602667pt;}
.y51{bottom:562.133600pt;}
.yb9{bottom:564.000000pt;}
.y8{bottom:569.932933pt;}
.y75{bottom:571.397333pt;}
.y119{bottom:571.664000pt;}
.y2c{bottom:573.360000pt;}
.y94{bottom:573.402667pt;}
.ydd{bottom:577.130667pt;}
.yb8{bottom:584.000000pt;}
.y118{bottom:588.330667pt;}
.y74{bottom:590.869333pt;}
.y2b{bottom:592.688000pt;}
.y93{bottom:592.730667pt;}
.ydc{bottom:597.658667pt;}
.y50{bottom:602.458667pt;}
.yb7{bottom:604.000000pt;}
.y117{bottom:604.997333pt;}
.y73{bottom:610.341333pt;}
.y2a{bottom:612.016000pt;}
.y92{bottom:612.058667pt;}
.ydb{bottom:618.186667pt;}
.y116{bottom:621.664000pt;}
.y4f{bottom:622.586667pt;}
.yb6{bottom:624.000000pt;}
.y72{bottom:629.813333pt;}
.y6{bottom:630.194267pt;}
.y29{bottom:631.344000pt;}
.y91{bottom:631.386667pt;}
.y115{bottom:638.330667pt;}
.yda{bottom:638.714667pt;}
.y4e{bottom:642.714667pt;}
.yb5{bottom:644.000000pt;}
.y5{bottom:646.860933pt;}
.y71{bottom:649.285333pt;}
.y28{bottom:650.672000pt;}
.y90{bottom:650.714667pt;}
.y114{bottom:654.997333pt;}
.yd9{bottom:659.242667pt;}
.y4d{bottom:662.842667pt;}
.yb4{bottom:664.000000pt;}
.y70{bottom:668.757333pt;}
.y27{bottom:670.000000pt;}
.y8f{bottom:670.042667pt;}
.y113{bottom:671.664000pt;}
.yd8{bottom:679.770667pt;}
.y4c{bottom:682.970667pt;}
.yb3{bottom:684.000000pt;}
.y4{bottom:684.314933pt;}
.y6f{bottom:688.229333pt;}
.y112{bottom:688.330667pt;}
.y26{bottom:689.333333pt;}
.y8e{bottom:689.370667pt;}
.yd7{bottom:700.298667pt;}
.y4b{bottom:703.098667pt;}
.yb2{bottom:704.000000pt;}
.y3{bottom:704.314933pt;}
.y6e{bottom:707.701333pt;}
.y8d{bottom:708.698667pt;}
.y111{bottom:710.666667pt;}
.yd6{bottom:720.826667pt;}
.y4a{bottom:723.226667pt;}
.yb1{bottom:724.000000pt;}
.y6d{bottom:727.173333pt;}
.y25{bottom:728.026667pt;}
.yd5{bottom:741.354667pt;}
.y49{bottom:743.354667pt;}
.yb0{bottom:744.000000pt;}
.y6c{bottom:746.645333pt;}
.y24{bottom:747.354667pt;}
.y110{bottom:750.666667pt;}
.yd4{bottom:761.882667pt;}
.y48{bottom:763.482667pt;}
.y2{bottom:764.000000pt;}
.y6b{bottom:766.117333pt;}
.y23{bottom:766.682667pt;}
.y10f{bottom:777.333333pt;}
.yd3{bottom:782.410667pt;}
.y47{bottom:783.610667pt;}
.yaf{bottom:784.000000pt;}
.y6a{bottom:785.589333pt;}
.y22{bottom:786.010667pt;}
.y10e{bottom:790.666667pt;}
.yd2{bottom:802.938667pt;}
.y46{bottom:803.738667pt;}
.yae{bottom:804.000000pt;}
.y69{bottom:805.061333pt;}
.y21{bottom:805.338667pt;}
.y10d{bottom:817.333333pt;}
.yd1{bottom:823.466667pt;}
.y45{bottom:823.866667pt;}
.yad{bottom:824.000000pt;}
.y68{bottom:824.533333pt;}
.y20{bottom:824.666667pt;}
.y10c{bottom:830.666667pt;}
.h6{height:35.456000pt;}
.h7{height:36.229167pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h2{height:90.572917pt;}
.h5{height:304.402688pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x6{left:73.216000pt;}
.x2{left:100.000000pt;}
.x4{left:113.229733pt;}
.x8{left:120.455067pt;}
.x7{left:126.460400pt;}
.x3{left:141.533733pt;}
.x1{left:564.791600pt;}
}




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