
    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_c1e588e848037da354fa5a0f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d2c301daff10ab1ae8e8a390.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_c8bbc159cc8c60152b75ba9b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.150879;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_5e51ea084c9470884e81e4a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.683594;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_629eba5eafcb2ed98eb6fd3f.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1e4a6a29d5af4eb699607eac.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_08611cd2cc896e23938f8c99.woff')format("woff");}.ff7{font-family:ff7;line-height:0.947266;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-22.770000px;}
.v2{vertical-align:-18.810000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.770000px;}
.ls31{letter-spacing:-6.555000px;}
.ls23{letter-spacing:-4.899000px;}
.ls28{letter-spacing:-4.416000px;}
.ls27{letter-spacing:-4.278000px;}
.ls34{letter-spacing:-4.002000px;}
.ls2c{letter-spacing:-3.381000px;}
.ls26{letter-spacing:-3.036000px;}
.ls25{letter-spacing:-2.691000px;}
.ls33{letter-spacing:-0.966000px;}
.ls22{letter-spacing:-0.828000px;}
.ls24{letter-spacing:-0.759000px;}
.ls13{letter-spacing:-0.690000px;}
.ls1d{letter-spacing:-0.621000px;}
.ls9{letter-spacing:-0.600000px;}
.ls1c{letter-spacing:-0.414000px;}
.ls14{letter-spacing:-0.345000px;}
.ls19{letter-spacing:-0.276000px;}
.ls1e{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.207000px;}
.ls1a{letter-spacing:-0.138000px;}
.lsc{letter-spacing:-0.069000px;}
.ls7{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.003158px;}
.ls35{letter-spacing:0.066316px;}
.lsa{letter-spacing:0.069000px;}
.lsb{letter-spacing:0.138000px;}
.ls2d{letter-spacing:0.205263px;}
.ls6{letter-spacing:0.207000px;}
.ls37{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.276000px;}
.ls1b{letter-spacing:0.312632px;}
.lsd{letter-spacing:0.345000px;}
.lse{letter-spacing:0.414000px;}
.ls18{letter-spacing:0.483000px;}
.ls38{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.552000px;}
.ls4{letter-spacing:0.621000px;}
.lsf{letter-spacing:0.690000px;}
.ls12{letter-spacing:0.759000px;}
.ls29{letter-spacing:0.828000px;}
.ls20{letter-spacing:0.897000px;}
.ls15{letter-spacing:1.035000px;}
.ls32{letter-spacing:1.104000px;}
.ls1f{letter-spacing:1.311000px;}
.ls10{letter-spacing:1.380000px;}
.ls11{letter-spacing:1.449000px;}
.ls2a{letter-spacing:2.070000px;}
.ls8{letter-spacing:2.730000px;}
.ls0{letter-spacing:3.900000px;}
.ls30{letter-spacing:4.140000px;}
.ls2b{letter-spacing:5.244000px;}
.ls36{letter-spacing:5.400000px;}
.ls2{letter-spacing:6.000000px;}
.ls16{letter-spacing:6.240000px;}
.ls1{letter-spacing:7.731000px;}
.ls2f{letter-spacing:8.901000px;}
.ls2e{letter-spacing:9.729000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-30.348000px;}
.ws4{word-spacing:-21.918000px;}
.ws18{word-spacing:-20.493000px;}
.ws8{word-spacing:-19.941000px;}
.ws13{word-spacing:-19.872000px;}
.ws14{word-spacing:-19.803000px;}
.ws15{word-spacing:-19.734000px;}
.ws7{word-spacing:-19.389000px;}
.ws1b{word-spacing:-19.251000px;}
.wsf{word-spacing:-19.113000px;}
.wsd{word-spacing:-19.044000px;}
.ws10{word-spacing:-18.975000px;}
.ws12{word-spacing:-18.699000px;}
.ws1d{word-spacing:-17.595000px;}
.ws16{word-spacing:-17.526000px;}
.ws19{word-spacing:-17.388000px;}
.wsc{word-spacing:-17.112000px;}
.ws2{word-spacing:-17.043000px;}
.ws6{word-spacing:-16.974000px;}
.wse{word-spacing:-16.836000px;}
.wsb{word-spacing:-16.698000px;}
.ws11{word-spacing:-16.353000px;}
.ws1a{word-spacing:-16.077000px;}
.ws17{word-spacing:-15.174000px;}
.ws9{word-spacing:-13.338000px;}
.ws5{word-spacing:-11.633400px;}
.ws1c{word-spacing:-11.426400px;}
.wsa{word-spacing:-0.069000px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:456.354600px;}
._f{margin-left:-1615.752000px;}
._18{margin-left:-19.230000px;}
._14{margin-left:-17.829000px;}
._15{margin-left:-15.957000px;}
._10{margin-left:-14.838000px;}
._a{margin-left:-13.500000px;}
._1a{margin-left:-11.439000px;}
._19{margin-left:-9.969000px;}
._b{margin-left:-8.100000px;}
._9{margin-left:-7.020000px;}
._13{margin-left:-5.964000px;}
._1{margin-left:-4.953000px;}
._11{margin-left:-3.450000px;}
._c{margin-left:-2.436000px;}
._2{margin-left:-1.380000px;}
._3{width:1.140000px;}
._8{width:2.160000px;}
._e{width:3.204000px;}
._0{width:4.260000px;}
._4{width:6.000000px;}
._6{width:7.500000px;}
._7{width:8.700000px;}
._d{width:10.452000px;}
._17{width:11.805000px;}
._16{width:12.912000px;}
._5{width:14.280000px;}
._12{width:18.850642px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:34.200000px;}
.fs9{font-size:41.400000px;}
.fs3{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs0{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:56.679300px;}
.y4c{bottom:56.691000px;}
.y73{bottom:106.300500px;}
.y23{bottom:109.041750px;}
.y4b{bottom:110.188500px;}
.ye2{bottom:110.394300px;}
.y107{bottom:110.988150px;}
.y98{bottom:110.999850px;}
.ybc{bottom:111.000000px;}
.y72{bottom:127.500000px;}
.y121{bottom:129.181500px;}
.y22{bottom:129.293250px;}
.y4a{bottom:131.043750px;}
.ye1{bottom:131.055750px;}
.y97{bottom:133.877850px;}
.y120{bottom:145.678500px;}
.y21{bottom:149.544750px;}
.y49{bottom:151.899000px;}
.ye0{bottom:151.911000px;}
.y96{bottom:152.056500px;}
.ybb{bottom:162.477000px;}
.y11f{bottom:166.878000px;}
.y106{bottom:168.089250px;}
.y20{bottom:169.951500px;}
.y48{bottom:172.754250px;}
.ydf{bottom:172.766250px;}
.y95{bottom:173.256000px;}
.y71{bottom:178.200000px;}
.yba{bottom:183.625500px;}
.y105{bottom:188.634000px;}
.y1f{bottom:190.358250px;}
.y47{bottom:193.609500px;}
.yde{bottom:193.621500px;}
.y94{bottom:196.134000px;}
.y70{bottom:198.900000px;}
.yb9{bottom:204.774000px;}
.y104{bottom:209.040750px;}
.y1e{bottom:210.765000px;}
.y46{bottom:214.464750px;}
.ydd{bottom:214.476750px;}
.y93{bottom:219.012000px;}
.y6f{bottom:219.600000px;}
.yb8{bottom:225.922500px;}
.y103{bottom:229.447500px;}
.y1d{bottom:231.171750px;}
.y45{bottom:235.320000px;}
.ydc{bottom:235.332000px;}
.y6e{bottom:240.300000px;}
.yb7{bottom:247.071000px;}
.y102{bottom:249.854250px;}
.y1c{bottom:251.578500px;}
.y44{bottom:256.175250px;}
.ydb{bottom:256.187250px;}
.y6d{bottom:261.000000px;}
.yb6{bottom:268.219500px;}
.y101{bottom:270.261000px;}
.y1b{bottom:271.985250px;}
.y92{bottom:272.713500px;}
.y43{bottom:277.030500px;}
.yda{bottom:277.042500px;}
.y6c{bottom:281.700000px;}
.yb5{bottom:289.368000px;}
.y100{bottom:290.667750px;}
.y1a{bottom:292.392000px;}
.y91{bottom:293.706750px;}
.y42{bottom:297.885750px;}
.yd9{bottom:297.897750px;}
.y6b{bottom:302.400000px;}
.yb4{bottom:310.516500px;}
.yff{bottom:311.074500px;}
.y19{bottom:312.798750px;}
.y90{bottom:314.774250px;}
.y11e{bottom:318.000000px;}
.y41{bottom:318.741000px;}
.yd8{bottom:318.753000px;}
.y6a{bottom:323.100000px;}
.yfe{bottom:331.481250px;}
.yb3{bottom:331.665000px;}
.y18{bottom:333.205500px;}
.y8f{bottom:335.767500px;}
.y11d{bottom:338.250000px;}
.y40{bottom:339.596250px;}
.yd7{bottom:339.608250px;}
.y69{bottom:343.800000px;}
.yfd{bottom:351.766500px;}
.yb2{bottom:352.813500px;}
.y17{bottom:353.612250px;}
.y8e{bottom:356.760750px;}
.y11c{bottom:358.500000px;}
.y3f{bottom:360.451500px;}
.yd6{bottom:360.463500px;}
.y68{bottom:364.500000px;}
.yfc{bottom:372.173250px;}
.yb1{bottom:373.962000px;}
.y16{bottom:374.019000px;}
.y8d{bottom:377.754000px;}
.y3e{bottom:381.306750px;}
.yd5{bottom:381.318750px;}
.y67{bottom:385.200000px;}
.yfb{bottom:392.580000px;}
.y11b{bottom:393.750000px;}
.y15{bottom:394.425750px;}
.yb0{bottom:395.110500px;}
.y8c{bottom:398.747250px;}
.y3d{bottom:402.162000px;}
.yd4{bottom:402.174000px;}
.y66{bottom:405.900000px;}
.yfa{bottom:412.986750px;}
.y14{bottom:414.832500px;}
.yaf{bottom:416.259000px;}
.y8b{bottom:419.740500px;}
.y3c{bottom:423.017250px;}
.yd3{bottom:423.029250px;}
.y65{bottom:426.600000px;}
.yf9{bottom:433.393500px;}
.y13{bottom:435.239250px;}
.yae{bottom:437.407500px;}
.y8a{bottom:440.733750px;}
.y3b{bottom:443.872500px;}
.yd2{bottom:443.884500px;}
.y11a{bottom:443.916000px;}
.y64{bottom:447.300000px;}
.yf8{bottom:453.800250px;}
.y12{bottom:455.646000px;}
.yad{bottom:458.556000px;}
.y89{bottom:461.727000px;}
.y3a{bottom:464.727750px;}
.yd1{bottom:464.739750px;}
.y119{bottom:464.771250px;}
.y63{bottom:468.000000px;}
.yf7{bottom:474.207000px;}
.y11{bottom:475.897500px;}
.yac{bottom:479.704500px;}
.y88{bottom:482.720250px;}
.y39{bottom:485.583000px;}
.yd0{bottom:485.595000px;}
.y118{bottom:485.626500px;}
.y62{bottom:488.700000px;}
.yf6{bottom:494.613750px;}
.y10{bottom:496.149000px;}
.yab{bottom:500.853000px;}
.y87{bottom:503.713500px;}
.y38{bottom:506.438250px;}
.ycf{bottom:506.450250px;}
.y117{bottom:506.481750px;}
.y61{bottom:509.400000px;}
.yf5{bottom:515.020500px;}
.yf{bottom:516.400500px;}
.yaa{bottom:522.001500px;}
.y86{bottom:524.706750px;}
.y37{bottom:527.293500px;}
.yce{bottom:527.305500px;}
.y116{bottom:527.337000px;}
.y60{bottom:530.100000px;}
.yf4{bottom:535.427250px;}
.ye{bottom:536.652000px;}
.ya9{bottom:543.175500px;}
.y85{bottom:545.747250px;}
.y36{bottom:548.148750px;}
.ycd{bottom:548.160750px;}
.y115{bottom:548.192250px;}
.y5f{bottom:550.800000px;}
.yf3{bottom:555.834000px;}
.yd{bottom:556.903500px;}
.ya8{bottom:564.324000px;}
.y84{bottom:566.740500px;}
.y35{bottom:569.004000px;}
.ycc{bottom:569.016000px;}
.y114{bottom:569.047500px;}
.y5e{bottom:571.500000px;}
.yf2{bottom:576.240750px;}
.yc{bottom:577.155000px;}
.ya7{bottom:585.472500px;}
.y83{bottom:587.733750px;}
.y34{bottom:589.859250px;}
.ycb{bottom:589.871250px;}
.y113{bottom:589.902750px;}
.y5d{bottom:592.200000px;}
.yf1{bottom:596.647500px;}
.ya6{bottom:606.621000px;}
.y82{bottom:608.727000px;}
.y33{bottom:610.714500px;}
.yca{bottom:610.726500px;}
.y112{bottom:610.758000px;}
.y5c{bottom:612.900000px;}
.yf0{bottom:617.054250px;}
.yb{bottom:617.655000px;}
.ya5{bottom:627.769500px;}
.y81{bottom:629.720250px;}
.y32{bottom:631.569750px;}
.yc9{bottom:631.581750px;}
.y111{bottom:631.613250px;}
.y5b{bottom:633.600000px;}
.ya{bottom:636.555000px;}
.yef{bottom:637.461000px;}
.ya4{bottom:648.918000px;}
.y80{bottom:650.713500px;}
.y31{bottom:652.425000px;}
.yc8{bottom:652.437000px;}
.y110{bottom:652.468500px;}
.y5a{bottom:654.300000px;}
.yee{bottom:657.867750px;}
.y9{bottom:669.855000px;}
.ya3{bottom:670.066500px;}
.y7f{bottom:671.706750px;}
.y30{bottom:673.280250px;}
.yc7{bottom:673.292250px;}
.y10f{bottom:673.323750px;}
.y59{bottom:675.000000px;}
.yed{bottom:678.274500px;}
.ya2{bottom:691.215000px;}
.y7e{bottom:692.733750px;}
.y2f{bottom:694.135500px;}
.yc6{bottom:694.147500px;}
.y10e{bottom:694.179000px;}
.y58{bottom:695.700000px;}
.yec{bottom:698.681250px;}
.y8{bottom:709.455000px;}
.ya1{bottom:712.363500px;}
.y7d{bottom:713.727000px;}
.y2e{bottom:714.990750px;}
.yc5{bottom:715.002750px;}
.y10d{bottom:715.034250px;}
.y57{bottom:716.400000px;}
.yeb{bottom:719.040750px;}
.ya0{bottom:733.512000px;}
.y7c{bottom:734.720250px;}
.y2d{bottom:735.846000px;}
.yc4{bottom:735.858000px;}
.y10c{bottom:735.889500px;}
.y56{bottom:737.100000px;}
.yea{bottom:739.447500px;}
.y7{bottom:741.855000px;}
.y9f{bottom:754.660500px;}
.y7b{bottom:755.713500px;}
.y2c{bottom:756.701250px;}
.yc3{bottom:756.713250px;}
.y10b{bottom:756.744750px;}
.y55{bottom:757.800000px;}
.ye9{bottom:759.854250px;}
.y6{bottom:774.255000px;}
.y9e{bottom:775.809000px;}
.y7a{bottom:776.706750px;}
.y2b{bottom:777.556500px;}
.yc2{bottom:777.568500px;}
.y10a{bottom:777.584250px;}
.y54{bottom:778.500000px;}
.ye8{bottom:780.261000px;}
.y9d{bottom:796.957500px;}
.y78{bottom:797.706750px;}
.y2a{bottom:798.411750px;}
.yc1{bottom:798.423750px;}
.y109{bottom:798.439500px;}
.y53{bottom:799.200000px;}
.ye7{bottom:800.667750px;}
.y79{bottom:803.392500px;}
.y9c{bottom:818.106000px;}
.y77{bottom:818.713500px;}
.y29{bottom:819.267000px;}
.yc0{bottom:819.279000px;}
.y108{bottom:819.294750px;}
.y52{bottom:819.900000px;}
.ye6{bottom:821.074500px;}
.y5{bottom:839.050500px;}
.y9b{bottom:839.254500px;}
.y76{bottom:839.706750px;}
.y28{bottom:840.122250px;}
.ybf{bottom:840.134250px;}
.y51{bottom:840.600000px;}
.ye5{bottom:841.481250px;}
.y4{bottom:857.050500px;}
.y9a{bottom:860.403000px;}
.y75{bottom:860.713500px;}
.y27{bottom:860.977500px;}
.ybe{bottom:860.989500px;}
.y50{bottom:861.300000px;}
.ye4{bottom:861.881250px;}
.y99{bottom:881.551500px;}
.y74{bottom:881.706750px;}
.y26{bottom:881.832750px;}
.ybd{bottom:881.844750px;}
.y4f{bottom:882.000000px;}
.ye3{bottom:882.281250px;}
.y3{bottom:885.685500px;}
.y25{bottom:902.688000px;}
.y4e{bottom:902.700000px;}
.y2{bottom:903.685500px;}
.y24{bottom:948.394500px;}
.y4d{bottom:948.406500px;}
.hf{height:27.042539px;}
.hb{height:29.415586px;}
.hd{height:35.819355px;}
.ha{height:40.757812px;}
.hc{height:45.852539px;}
.he{height:48.225586px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h15{height:53.583984px;}
.h2{height:53.815430px;}
.h7{height:58.589355px;}
.h14{height:58.652355px;}
.h13{height:59.075355px;}
.h8{height:61.621582px;}
.h11{height:61.648582px;}
.h12{height:61.810582px;}
.h10{height:62.396782px;}
.h9{height:66.231445px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x5{left:99.908475px;}
.x3{left:106.299300px;}
.x2{left:233.857500px;}
.x6{left:376.806000px;}
.x4{left:608.545500px;}
@media print{
.v3{vertical-align:-20.240000pt;}
.v2{vertical-align:-16.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.240000pt;}
.ls31{letter-spacing:-5.826667pt;}
.ls23{letter-spacing:-4.354667pt;}
.ls28{letter-spacing:-3.925333pt;}
.ls27{letter-spacing:-3.802667pt;}
.ls34{letter-spacing:-3.557333pt;}
.ls2c{letter-spacing:-3.005333pt;}
.ls26{letter-spacing:-2.698667pt;}
.ls25{letter-spacing:-2.392000pt;}
.ls33{letter-spacing:-0.858667pt;}
.ls22{letter-spacing:-0.736000pt;}
.ls24{letter-spacing:-0.674667pt;}
.ls13{letter-spacing:-0.613333pt;}
.ls1d{letter-spacing:-0.552000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls1c{letter-spacing:-0.368000pt;}
.ls14{letter-spacing:-0.306667pt;}
.ls19{letter-spacing:-0.245333pt;}
.ls1e{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.184000pt;}
.ls1a{letter-spacing:-0.122667pt;}
.lsc{letter-spacing:-0.061333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.002807pt;}
.ls35{letter-spacing:0.058947pt;}
.lsa{letter-spacing:0.061333pt;}
.lsb{letter-spacing:0.122667pt;}
.ls2d{letter-spacing:0.182456pt;}
.ls6{letter-spacing:0.184000pt;}
.ls37{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.245333pt;}
.ls1b{letter-spacing:0.277895pt;}
.lsd{letter-spacing:0.306667pt;}
.lse{letter-spacing:0.368000pt;}
.ls18{letter-spacing:0.429333pt;}
.ls38{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.490667pt;}
.ls4{letter-spacing:0.552000pt;}
.lsf{letter-spacing:0.613333pt;}
.ls12{letter-spacing:0.674667pt;}
.ls29{letter-spacing:0.736000pt;}
.ls20{letter-spacing:0.797333pt;}
.ls15{letter-spacing:0.920000pt;}
.ls32{letter-spacing:0.981333pt;}
.ls1f{letter-spacing:1.165333pt;}
.ls10{letter-spacing:1.226667pt;}
.ls11{letter-spacing:1.288000pt;}
.ls2a{letter-spacing:1.840000pt;}
.ls8{letter-spacing:2.426667pt;}
.ls0{letter-spacing:3.466667pt;}
.ls30{letter-spacing:3.680000pt;}
.ls2b{letter-spacing:4.661333pt;}
.ls36{letter-spacing:4.800000pt;}
.ls2{letter-spacing:5.333333pt;}
.ls16{letter-spacing:5.546667pt;}
.ls1{letter-spacing:6.872000pt;}
.ls2f{letter-spacing:7.912000pt;}
.ls2e{letter-spacing:8.648000pt;}
.ws1{word-spacing:-26.976000pt;}
.ws4{word-spacing:-19.482667pt;}
.ws18{word-spacing:-18.216000pt;}
.ws8{word-spacing:-17.725333pt;}
.ws13{word-spacing:-17.664000pt;}
.ws14{word-spacing:-17.602667pt;}
.ws15{word-spacing:-17.541333pt;}
.ws7{word-spacing:-17.234667pt;}
.ws1b{word-spacing:-17.112000pt;}
.wsf{word-spacing:-16.989333pt;}
.wsd{word-spacing:-16.928000pt;}
.ws10{word-spacing:-16.866667pt;}
.ws12{word-spacing:-16.621333pt;}
.ws1d{word-spacing:-15.640000pt;}
.ws16{word-spacing:-15.578667pt;}
.ws19{word-spacing:-15.456000pt;}
.wsc{word-spacing:-15.210667pt;}
.ws2{word-spacing:-15.149333pt;}
.ws6{word-spacing:-15.088000pt;}
.wse{word-spacing:-14.965333pt;}
.wsb{word-spacing:-14.842667pt;}
.ws11{word-spacing:-14.536000pt;}
.ws1a{word-spacing:-14.290667pt;}
.ws17{word-spacing:-13.488000pt;}
.ws9{word-spacing:-11.856000pt;}
.ws5{word-spacing:-10.340800pt;}
.ws1c{word-spacing:-10.156800pt;}
.wsa{word-spacing:-0.061333pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:405.648533pt;}
._f{margin-left:-1436.224000pt;}
._18{margin-left:-17.093333pt;}
._14{margin-left:-15.848000pt;}
._15{margin-left:-14.184000pt;}
._10{margin-left:-13.189333pt;}
._a{margin-left:-12.000000pt;}
._1a{margin-left:-10.168000pt;}
._19{margin-left:-8.861333pt;}
._b{margin-left:-7.200000pt;}
._9{margin-left:-6.240000pt;}
._13{margin-left:-5.301333pt;}
._1{margin-left:-4.402667pt;}
._11{margin-left:-3.066667pt;}
._c{margin-left:-2.165333pt;}
._2{margin-left:-1.226667pt;}
._3{width:1.013333pt;}
._8{width:1.920000pt;}
._e{width:2.848000pt;}
._0{width:3.786667pt;}
._4{width:5.333333pt;}
._6{width:6.666667pt;}
._7{width:7.733333pt;}
._d{width:9.290667pt;}
._17{width:10.493333pt;}
._16{width:11.477333pt;}
._5{width:12.693333pt;}
._12{width:16.756126pt;}
.fsa{font-size:30.400000pt;}
.fs9{font-size:36.800000pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs0{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.381600pt;}
.y4c{bottom:50.392000pt;}
.y73{bottom:94.489333pt;}
.y23{bottom:96.926000pt;}
.y4b{bottom:97.945333pt;}
.ye2{bottom:98.128267pt;}
.y107{bottom:98.656133pt;}
.y98{bottom:98.666533pt;}
.ybc{bottom:98.666667pt;}
.y72{bottom:113.333333pt;}
.y121{bottom:114.828000pt;}
.y22{bottom:114.927333pt;}
.y4a{bottom:116.483333pt;}
.ye1{bottom:116.494000pt;}
.y97{bottom:119.002533pt;}
.y120{bottom:129.492000pt;}
.y21{bottom:132.928667pt;}
.y49{bottom:135.021333pt;}
.ye0{bottom:135.032000pt;}
.y96{bottom:135.161333pt;}
.ybb{bottom:144.424000pt;}
.y11f{bottom:148.336000pt;}
.y106{bottom:149.412667pt;}
.y20{bottom:151.068000pt;}
.y48{bottom:153.559333pt;}
.ydf{bottom:153.570000pt;}
.y95{bottom:154.005333pt;}
.y71{bottom:158.400000pt;}
.yba{bottom:163.222667pt;}
.y105{bottom:167.674667pt;}
.y1f{bottom:169.207333pt;}
.y47{bottom:172.097333pt;}
.yde{bottom:172.108000pt;}
.y94{bottom:174.341333pt;}
.y70{bottom:176.800000pt;}
.yb9{bottom:182.021333pt;}
.y104{bottom:185.814000pt;}
.y1e{bottom:187.346667pt;}
.y46{bottom:190.635333pt;}
.ydd{bottom:190.646000pt;}
.y93{bottom:194.677333pt;}
.y6f{bottom:195.200000pt;}
.yb8{bottom:200.820000pt;}
.y103{bottom:203.953333pt;}
.y1d{bottom:205.486000pt;}
.y45{bottom:209.173333pt;}
.ydc{bottom:209.184000pt;}
.y6e{bottom:213.600000pt;}
.yb7{bottom:219.618667pt;}
.y102{bottom:222.092667pt;}
.y1c{bottom:223.625333pt;}
.y44{bottom:227.711333pt;}
.ydb{bottom:227.722000pt;}
.y6d{bottom:232.000000pt;}
.yb6{bottom:238.417333pt;}
.y101{bottom:240.232000pt;}
.y1b{bottom:241.764667pt;}
.y92{bottom:242.412000pt;}
.y43{bottom:246.249333pt;}
.yda{bottom:246.260000pt;}
.y6c{bottom:250.400000pt;}
.yb5{bottom:257.216000pt;}
.y100{bottom:258.371333pt;}
.y1a{bottom:259.904000pt;}
.y91{bottom:261.072667pt;}
.y42{bottom:264.787333pt;}
.yd9{bottom:264.798000pt;}
.y6b{bottom:268.800000pt;}
.yb4{bottom:276.014667pt;}
.yff{bottom:276.510667pt;}
.y19{bottom:278.043333pt;}
.y90{bottom:279.799333pt;}
.y11e{bottom:282.666667pt;}
.y41{bottom:283.325333pt;}
.yd8{bottom:283.336000pt;}
.y6a{bottom:287.200000pt;}
.yfe{bottom:294.650000pt;}
.yb3{bottom:294.813333pt;}
.y18{bottom:296.182667pt;}
.y8f{bottom:298.460000pt;}
.y11d{bottom:300.666667pt;}
.y40{bottom:301.863333pt;}
.yd7{bottom:301.874000pt;}
.y69{bottom:305.600000pt;}
.yfd{bottom:312.681333pt;}
.yb2{bottom:313.612000pt;}
.y17{bottom:314.322000pt;}
.y8e{bottom:317.120667pt;}
.y11c{bottom:318.666667pt;}
.y3f{bottom:320.401333pt;}
.yd6{bottom:320.412000pt;}
.y68{bottom:324.000000pt;}
.yfc{bottom:330.820667pt;}
.yb1{bottom:332.410667pt;}
.y16{bottom:332.461333pt;}
.y8d{bottom:335.781333pt;}
.y3e{bottom:338.939333pt;}
.yd5{bottom:338.950000pt;}
.y67{bottom:342.400000pt;}
.yfb{bottom:348.960000pt;}
.y11b{bottom:350.000000pt;}
.y15{bottom:350.600667pt;}
.yb0{bottom:351.209333pt;}
.y8c{bottom:354.442000pt;}
.y3d{bottom:357.477333pt;}
.yd4{bottom:357.488000pt;}
.y66{bottom:360.800000pt;}
.yfa{bottom:367.099333pt;}
.y14{bottom:368.740000pt;}
.yaf{bottom:370.008000pt;}
.y8b{bottom:373.102667pt;}
.y3c{bottom:376.015333pt;}
.yd3{bottom:376.026000pt;}
.y65{bottom:379.200000pt;}
.yf9{bottom:385.238667pt;}
.y13{bottom:386.879333pt;}
.yae{bottom:388.806667pt;}
.y8a{bottom:391.763333pt;}
.y3b{bottom:394.553333pt;}
.yd2{bottom:394.564000pt;}
.y11a{bottom:394.592000pt;}
.y64{bottom:397.600000pt;}
.yf8{bottom:403.378000pt;}
.y12{bottom:405.018667pt;}
.yad{bottom:407.605333pt;}
.y89{bottom:410.424000pt;}
.y3a{bottom:413.091333pt;}
.yd1{bottom:413.102000pt;}
.y119{bottom:413.130000pt;}
.y63{bottom:416.000000pt;}
.yf7{bottom:421.517333pt;}
.y11{bottom:423.020000pt;}
.yac{bottom:426.404000pt;}
.y88{bottom:429.084667pt;}
.y39{bottom:431.629333pt;}
.yd0{bottom:431.640000pt;}
.y118{bottom:431.668000pt;}
.y62{bottom:434.400000pt;}
.yf6{bottom:439.656667pt;}
.y10{bottom:441.021333pt;}
.yab{bottom:445.202667pt;}
.y87{bottom:447.745333pt;}
.y38{bottom:450.167333pt;}
.ycf{bottom:450.178000pt;}
.y117{bottom:450.206000pt;}
.y61{bottom:452.800000pt;}
.yf5{bottom:457.796000pt;}
.yf{bottom:459.022667pt;}
.yaa{bottom:464.001333pt;}
.y86{bottom:466.406000pt;}
.y37{bottom:468.705333pt;}
.yce{bottom:468.716000pt;}
.y116{bottom:468.744000pt;}
.y60{bottom:471.200000pt;}
.yf4{bottom:475.935333pt;}
.ye{bottom:477.024000pt;}
.ya9{bottom:482.822667pt;}
.y85{bottom:485.108667pt;}
.y36{bottom:487.243333pt;}
.ycd{bottom:487.254000pt;}
.y115{bottom:487.282000pt;}
.y5f{bottom:489.600000pt;}
.yf3{bottom:494.074667pt;}
.yd{bottom:495.025333pt;}
.ya8{bottom:501.621333pt;}
.y84{bottom:503.769333pt;}
.y35{bottom:505.781333pt;}
.ycc{bottom:505.792000pt;}
.y114{bottom:505.820000pt;}
.y5e{bottom:508.000000pt;}
.yf2{bottom:512.214000pt;}
.yc{bottom:513.026667pt;}
.ya7{bottom:520.420000pt;}
.y83{bottom:522.430000pt;}
.y34{bottom:524.319333pt;}
.ycb{bottom:524.330000pt;}
.y113{bottom:524.358000pt;}
.y5d{bottom:526.400000pt;}
.yf1{bottom:530.353333pt;}
.ya6{bottom:539.218667pt;}
.y82{bottom:541.090667pt;}
.y33{bottom:542.857333pt;}
.yca{bottom:542.868000pt;}
.y112{bottom:542.896000pt;}
.y5c{bottom:544.800000pt;}
.yf0{bottom:548.492667pt;}
.yb{bottom:549.026667pt;}
.ya5{bottom:558.017333pt;}
.y81{bottom:559.751333pt;}
.y32{bottom:561.395333pt;}
.yc9{bottom:561.406000pt;}
.y111{bottom:561.434000pt;}
.y5b{bottom:563.200000pt;}
.ya{bottom:565.826667pt;}
.yef{bottom:566.632000pt;}
.ya4{bottom:576.816000pt;}
.y80{bottom:578.412000pt;}
.y31{bottom:579.933333pt;}
.yc8{bottom:579.944000pt;}
.y110{bottom:579.972000pt;}
.y5a{bottom:581.600000pt;}
.yee{bottom:584.771333pt;}
.y9{bottom:595.426667pt;}
.ya3{bottom:595.614667pt;}
.y7f{bottom:597.072667pt;}
.y30{bottom:598.471333pt;}
.yc7{bottom:598.482000pt;}
.y10f{bottom:598.510000pt;}
.y59{bottom:600.000000pt;}
.yed{bottom:602.910667pt;}
.ya2{bottom:614.413333pt;}
.y7e{bottom:615.763333pt;}
.y2f{bottom:617.009333pt;}
.yc6{bottom:617.020000pt;}
.y10e{bottom:617.048000pt;}
.y58{bottom:618.400000pt;}
.yec{bottom:621.050000pt;}
.y8{bottom:630.626667pt;}
.ya1{bottom:633.212000pt;}
.y7d{bottom:634.424000pt;}
.y2e{bottom:635.547333pt;}
.yc5{bottom:635.558000pt;}
.y10d{bottom:635.586000pt;}
.y57{bottom:636.800000pt;}
.yeb{bottom:639.147333pt;}
.ya0{bottom:652.010667pt;}
.y7c{bottom:653.084667pt;}
.y2d{bottom:654.085333pt;}
.yc4{bottom:654.096000pt;}
.y10c{bottom:654.124000pt;}
.y56{bottom:655.200000pt;}
.yea{bottom:657.286667pt;}
.y7{bottom:659.426667pt;}
.y9f{bottom:670.809333pt;}
.y7b{bottom:671.745333pt;}
.y2c{bottom:672.623333pt;}
.yc3{bottom:672.634000pt;}
.y10b{bottom:672.662000pt;}
.y55{bottom:673.600000pt;}
.ye9{bottom:675.426000pt;}
.y6{bottom:688.226667pt;}
.y9e{bottom:689.608000pt;}
.y7a{bottom:690.406000pt;}
.y2b{bottom:691.161333pt;}
.yc2{bottom:691.172000pt;}
.y10a{bottom:691.186000pt;}
.y54{bottom:692.000000pt;}
.ye8{bottom:693.565333pt;}
.y9d{bottom:708.406667pt;}
.y78{bottom:709.072667pt;}
.y2a{bottom:709.699333pt;}
.yc1{bottom:709.710000pt;}
.y109{bottom:709.724000pt;}
.y53{bottom:710.400000pt;}
.ye7{bottom:711.704667pt;}
.y79{bottom:714.126667pt;}
.y9c{bottom:727.205333pt;}
.y77{bottom:727.745333pt;}
.y29{bottom:728.237333pt;}
.yc0{bottom:728.248000pt;}
.y108{bottom:728.262000pt;}
.y52{bottom:728.800000pt;}
.ye6{bottom:729.844000pt;}
.y5{bottom:745.822667pt;}
.y9b{bottom:746.004000pt;}
.y76{bottom:746.406000pt;}
.y28{bottom:746.775333pt;}
.ybf{bottom:746.786000pt;}
.y51{bottom:747.200000pt;}
.ye5{bottom:747.983333pt;}
.y4{bottom:761.822667pt;}
.y9a{bottom:764.802667pt;}
.y75{bottom:765.078667pt;}
.y27{bottom:765.313333pt;}
.ybe{bottom:765.324000pt;}
.y50{bottom:765.600000pt;}
.ye4{bottom:766.116667pt;}
.y99{bottom:783.601333pt;}
.y74{bottom:783.739333pt;}
.y26{bottom:783.851333pt;}
.ybd{bottom:783.862000pt;}
.y4f{bottom:784.000000pt;}
.ye3{bottom:784.250000pt;}
.y3{bottom:787.276000pt;}
.y25{bottom:802.389333pt;}
.y4e{bottom:802.400000pt;}
.y2{bottom:803.276000pt;}
.y24{bottom:843.017333pt;}
.y4d{bottom:843.028000pt;}
.hf{height:24.037812pt;}
.hb{height:26.147187pt;}
.hd{height:31.839427pt;}
.ha{height:36.229167pt;}
.hc{height:40.757812pt;}
.he{height:42.867188pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h15{height:47.630208pt;}
.h2{height:47.835938pt;}
.h7{height:52.079427pt;}
.h14{height:52.135427pt;}
.h13{height:52.511427pt;}
.h8{height:54.774740pt;}
.h11{height:54.798740pt;}
.h12{height:54.942740pt;}
.h10{height:55.463806pt;}
.h9{height:58.872396pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x5{left:88.807533pt;}
.x3{left:94.488267pt;}
.x2{left:207.873333pt;}
.x6{left:334.938667pt;}
.x4{left:540.929333pt;}
}




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