
    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_8f37192272016a8a6b27592c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_73c6fba561fa8eefc1b6b115.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_07a1d07165c3a123dfeef937.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_66cd6e302123d4ccf7364564.woff')format("woff");}.ff4{font-family:ff4;line-height:0.902344;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_1ab6d64aaf04b642de7dc571.woff')format("woff");}.ff5{font-family:ff5;line-height:1.196777;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_a887dc229f4aa8bbf5745343.woff')format("woff");}.ff6{font-family:ff6;line-height:1.024414;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:-18.810000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.539000px;}
.v1{vertical-align:81.000000px;}
.ls23{letter-spacing:-7.245000px;}
.ls2c{letter-spacing:-6.300000px;}
.ls1a{letter-spacing:-1.890000px;}
.ls13{letter-spacing:-1.380000px;}
.ls12{letter-spacing:-0.828000px;}
.ls11{letter-spacing:-0.759000px;}
.lsf{letter-spacing:-0.690000px;}
.ls1d{letter-spacing:-0.552000px;}
.ls20{letter-spacing:-0.483000px;}
.ls10{letter-spacing:-0.414000px;}
.ls6{letter-spacing:-0.345000px;}
.ls2b{letter-spacing:-0.315000px;}
.ls24{letter-spacing:-0.276000px;}
.ls1f{letter-spacing:-0.207000px;}
.ls14{letter-spacing:-0.138000px;}
.ls1c{letter-spacing:-0.069000px;}
.ls2a{letter-spacing:-0.063000px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.003158px;}
.ls4{letter-spacing:0.069000px;}
.ls7{letter-spacing:0.138000px;}
.ls19{letter-spacing:0.207000px;}
.ls21{letter-spacing:0.276000px;}
.ls2{letter-spacing:0.345000px;}
.lsd{letter-spacing:0.414000px;}
.lsb{letter-spacing:0.483000px;}
.lsa{letter-spacing:0.552000px;}
.lse{letter-spacing:0.621000px;}
.ls3{letter-spacing:0.690000px;}
.ls15{letter-spacing:0.759000px;}
.ls1b{letter-spacing:0.828000px;}
.ls16{letter-spacing:0.966000px;}
.ls17{letter-spacing:1.035000px;}
.lsc{letter-spacing:2.730000px;}
.ls0{letter-spacing:3.900000px;}
.ls28{letter-spacing:5.400000px;}
.ls1{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.240000px;}
.ls25{letter-spacing:6.300000px;}
.ls1e{letter-spacing:6.555000px;}
.ls22{letter-spacing:7.245000px;}
.ls9{letter-spacing:7.731000px;}
.ls27{letter-spacing:9.135000px;}
.ls29{letter-spacing:9.387000px;}
.ls26{letter-spacing:9.450000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-55.978066px;}
.ws1{word-spacing:-30.348000px;}
.ws1f{word-spacing:-24.003000px;}
.ws0{word-spacing:-21.075000px;}
.wsb{word-spacing:-20.424000px;}
.wsa{word-spacing:-20.079000px;}
.ws7{word-spacing:-20.010000px;}
.ws6{word-spacing:-19.803000px;}
.wsc{word-spacing:-19.734000px;}
.ws1d{word-spacing:-19.665000px;}
.ws1a{word-spacing:-19.596000px;}
.ws13{word-spacing:-19.527000px;}
.ws4{word-spacing:-19.458000px;}
.ws3{word-spacing:-19.389000px;}
.ws14{word-spacing:-19.182000px;}
.ws15{word-spacing:-19.044000px;}
.ws8{word-spacing:-18.975000px;}
.ws9{word-spacing:-18.699000px;}
.ws21{word-spacing:-17.703000px;}
.ws1c{word-spacing:-17.457000px;}
.ws11{word-spacing:-17.388000px;}
.ws1e{word-spacing:-17.319000px;}
.ws16{word-spacing:-17.250000px;}
.wse{word-spacing:-17.112000px;}
.wsd{word-spacing:-17.043000px;}
.ws1b{word-spacing:-16.836000px;}
.ws12{word-spacing:-16.698000px;}
.ws17{word-spacing:-16.560000px;}
.ws20{word-spacing:-15.561000px;}
.wsf{word-spacing:-15.174000px;}
.ws19{word-spacing:-13.338000px;}
.ws10{word-spacing:-13.284000px;}
.ws18{word-spacing:-11.633400px;}
.ws22{word-spacing:-9.261000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1615.752000px;}
._14{margin-left:-16.104000px;}
._f{margin-left:-13.929000px;}
._15{margin-left:-12.780902px;}
._12{margin-left:-11.645098px;}
._13{margin-left:-9.666000px;}
._e{margin-left:-8.292000px;}
._10{margin-left:-7.182000px;}
._b{margin-left:-6.060000px;}
._3{margin-left:-4.773000px;}
._a{margin-left:-2.880000px;}
._2{margin-left:-1.800000px;}
._7{width:1.233000px;}
._9{width:3.000000px;}
._1{width:4.080000px;}
._d{width:5.277000px;}
._4{width:6.300000px;}
._6{width:7.740000px;}
._8{width:9.147000px;}
._c{width:10.340871px;}
._16{width:13.464644px;}
._5{width:14.580000px;}
._11{width:18.850011px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.200000px;}
.fsa{font-size:41.400000px;}
.fs9{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs6{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:56.667600px;}
.y25{bottom:56.691000px;}
.y73{bottom:106.300500px;}
.yfa{bottom:109.452000px;}
.y24{bottom:109.557000px;}
.y9a{bottom:109.631250px;}
.y120{bottom:110.200500px;}
.yab{bottom:110.252250px;}
.y4e{bottom:110.959500px;}
.yd3{bottom:110.976450px;}
.y72{bottom:127.500000px;}
.y140{bottom:128.721900px;}
.yf9{bottom:129.703500px;}
.y23{bottom:129.808500px;}
.y99{bottom:130.038000px;}
.yaa{bottom:130.659000px;}
.y11f{bottom:131.055750px;}
.y4d{bottom:131.504250px;}
.y13f{bottom:148.971900px;}
.yf8{bottom:149.955000px;}
.y22{bottom:150.060000px;}
.y98{bottom:150.289500px;}
.ya9{bottom:151.065750px;}
.y11e{bottom:151.911000px;}
.y4c{bottom:152.204250px;}
.yd2{bottom:164.319750px;}
.y13e{bottom:169.222500px;}
.yf7{bottom:170.206500px;}
.y21{bottom:170.311500px;}
.y97{bottom:170.541000px;}
.ya8{bottom:171.472500px;}
.y11d{bottom:172.766250px;}
.y4b{bottom:172.904250px;}
.y71{bottom:183.576000px;}
.yd1{bottom:184.278000px;}
.yf6{bottom:190.458000px;}
.y20{bottom:190.563000px;}
.y96{bottom:190.792500px;}
.ya7{bottom:191.879250px;}
.y11c{bottom:193.621500px;}
.y4a{bottom:193.897500px;}
.y70{bottom:204.120750px;}
.yd0{bottom:204.236250px;}
.y13d{bottom:204.472500px;}
.yf5{bottom:210.709500px;}
.y1f{bottom:210.814500px;}
.y95{bottom:211.044000px;}
.ya6{bottom:212.286000px;}
.y49{bottom:214.149000px;}
.y11b{bottom:214.476750px;}
.ycf{bottom:224.194500px;}
.y6f{bottom:224.665500px;}
.yf4{bottom:230.961000px;}
.y1e{bottom:231.066000px;}
.y94{bottom:231.295500px;}
.ya5{bottom:232.692750px;}
.y48{bottom:234.400500px;}
.y11a{bottom:235.332000px;}
.yce{bottom:244.152750px;}
.y6e{bottom:245.210250px;}
.yf3{bottom:251.212500px;}
.y1d{bottom:251.317500px;}
.y93{bottom:251.547000px;}
.ya4{bottom:253.099500px;}
.y47{bottom:254.652000px;}
.y13c{bottom:254.709000px;}
.y119{bottom:256.187250px;}
.ycd{bottom:264.111000px;}
.y6d{bottom:265.755000px;}
.yf2{bottom:271.464000px;}
.y1c{bottom:271.569000px;}
.y92{bottom:271.798500px;}
.ya3{bottom:273.506250px;}
.y13b{bottom:274.065750px;}
.y46{bottom:274.903500px;}
.y118{bottom:277.042500px;}
.ycc{bottom:284.069250px;}
.y6c{bottom:286.299750px;}
.yf1{bottom:291.715500px;}
.y1b{bottom:291.820500px;}
.y91{bottom:292.050000px;}
.ya2{bottom:293.913000px;}
.y45{bottom:295.155000px;}
.y117{bottom:297.897750px;}
.y13a{bottom:301.927500px;}
.ycb{bottom:304.027500px;}
.y6b{bottom:306.844500px;}
.yf0{bottom:311.967000px;}
.y1a{bottom:312.072000px;}
.y90{bottom:312.301500px;}
.ya1{bottom:314.319750px;}
.y44{bottom:315.406500px;}
.y116{bottom:318.753000px;}
.yca{bottom:323.985750px;}
.y6a{bottom:327.389250px;}
.y139{bottom:329.773500px;}
.yef{bottom:332.218500px;}
.y19{bottom:332.323500px;}
.y8f{bottom:332.553000px;}
.ya0{bottom:334.726500px;}
.y43{bottom:335.658000px;}
.y115{bottom:339.608250px;}
.yc9{bottom:343.944000px;}
.y69{bottom:347.934000px;}
.yee{bottom:352.470000px;}
.y18{bottom:352.575000px;}
.y8e{bottom:352.804500px;}
.y9f{bottom:355.133250px;}
.y42{bottom:355.909500px;}
.y138{bottom:357.619500px;}
.y114{bottom:360.463500px;}
.yc8{bottom:363.902250px;}
.y68{bottom:368.478750px;}
.yed{bottom:372.721500px;}
.y17{bottom:372.826500px;}
.y8d{bottom:373.056000px;}
.y9e{bottom:375.540000px;}
.y41{bottom:376.161000px;}
.y137{bottom:376.976250px;}
.y113{bottom:381.318750px;}
.yc7{bottom:383.860500px;}
.y67{bottom:389.023500px;}
.yec{bottom:392.973000px;}
.y16{bottom:393.078000px;}
.y8c{bottom:393.307500px;}
.y9d{bottom:395.946750px;}
.y40{bottom:396.412500px;}
.y112{bottom:402.174000px;}
.yc6{bottom:403.818750px;}
.y136{bottom:404.838000px;}
.y66{bottom:409.568250px;}
.yeb{bottom:413.224500px;}
.y15{bottom:413.329500px;}
.y8b{bottom:413.559000px;}
.y9c{bottom:416.353500px;}
.y3f{bottom:416.664000px;}
.y111{bottom:423.029250px;}
.yc5{bottom:423.777000px;}
.y65{bottom:430.113000px;}
.y135{bottom:432.687000px;}
.yea{bottom:433.476000px;}
.y14{bottom:433.581000px;}
.y8a{bottom:433.810500px;}
.y9b{bottom:436.760250px;}
.y3e{bottom:436.915500px;}
.yc4{bottom:443.735250px;}
.y110{bottom:443.884500px;}
.y64{bottom:450.657750px;}
.y133{bottom:452.028000px;}
.y134{bottom:452.041500px;}
.ye9{bottom:453.727500px;}
.y13{bottom:453.832500px;}
.y89{bottom:454.062000px;}
.y3d{bottom:457.167000px;}
.yc3{bottom:463.693500px;}
.y10f{bottom:464.739750px;}
.y63{bottom:471.202500px;}
.y12{bottom:474.084000px;}
.ye8{bottom:474.134250px;}
.y88{bottom:474.313500px;}
.y3c{bottom:477.418500px;}
.y132{bottom:479.874000px;}
.yc2{bottom:483.651750px;}
.y10e{bottom:485.595000px;}
.y62{bottom:491.747250px;}
.y11{bottom:494.335500px;}
.ye7{bottom:494.541000px;}
.y87{bottom:494.565000px;}
.y3b{bottom:497.670000px;}
.yc1{bottom:503.610000px;}
.y10d{bottom:506.450250px;}
.y131{bottom:507.735750px;}
.y61{bottom:512.292000px;}
.y10{bottom:514.587000px;}
.ye6{bottom:514.947750px;}
.y86{bottom:514.971750px;}
.y3a{bottom:517.921500px;}
.yc0{bottom:523.568250px;}
.y130{bottom:527.092500px;}
.y10c{bottom:527.305500px;}
.y60{bottom:532.836750px;}
.yf{bottom:534.838500px;}
.ye5{bottom:535.354500px;}
.y85{bottom:535.378500px;}
.y39{bottom:538.173000px;}
.ybf{bottom:543.526500px;}
.y12f{bottom:546.449250px;}
.y10b{bottom:548.160750px;}
.y5f{bottom:553.381500px;}
.ye{bottom:555.090000px;}
.ye4{bottom:555.761250px;}
.y84{bottom:555.785250px;}
.y38{bottom:558.424500px;}
.ybe{bottom:563.484750px;}
.y10a{bottom:569.016000px;}
.y5e{bottom:573.926250px;}
.yd{bottom:575.341500px;}
.yc{bottom:575.343000px;}
.ye3{bottom:576.168000px;}
.y83{bottom:576.192000px;}
.y37{bottom:578.676000px;}
.y12e{bottom:580.800000px;}
.ybd{bottom:583.443000px;}
.y109{bottom:589.871250px;}
.y5d{bottom:594.471000px;}
.ye2{bottom:596.574750px;}
.y82{bottom:596.598750px;}
.y36{bottom:598.927500px;}
.ybc{bottom:603.401250px;}
.y108{bottom:610.726500px;}
.y5c{bottom:615.015750px;}
.ye1{bottom:616.981500px;}
.y81{bottom:617.005500px;}
.y35{bottom:619.179000px;}
.ybb{bottom:623.359500px;}
.y12d{bottom:629.787750px;}
.y107{bottom:631.581750px;}
.y5b{bottom:635.560500px;}
.yb{bottom:636.693000px;}
.ye0{bottom:637.388250px;}
.y80{bottom:637.412250px;}
.y34{bottom:639.430500px;}
.yba{bottom:643.317750px;}
.y12c{bottom:650.781000px;}
.y106{bottom:652.437000px;}
.y5a{bottom:656.105250px;}
.ya{bottom:656.193000px;}
.ydf{bottom:657.795000px;}
.y7f{bottom:657.819000px;}
.y33{bottom:659.682000px;}
.yb9{bottom:663.177000px;}
.y12b{bottom:671.774250px;}
.y105{bottom:673.292250px;}
.y59{bottom:676.707750px;}
.yde{bottom:678.201750px;}
.y7e{bottom:678.225750px;}
.y32{bottom:679.933500px;}
.yb8{bottom:683.135250px;}
.y12a{bottom:692.767500px;}
.y104{bottom:694.147500px;}
.y9{bottom:696.543000px;}
.y58{bottom:697.252500px;}
.ydd{bottom:698.608500px;}
.y7d{bottom:698.632500px;}
.y31{bottom:700.185000px;}
.yb7{bottom:703.093500px;}
.y129{bottom:713.760750px;}
.y103{bottom:715.002750px;}
.y57{bottom:717.797250px;}
.ydc{bottom:719.015250px;}
.y7c{bottom:719.039250px;}
.y30{bottom:720.436500px;}
.y8{bottom:721.744500px;}
.yb6{bottom:723.051750px;}
.y128{bottom:734.754000px;}
.y102{bottom:735.858000px;}
.y56{bottom:738.342000px;}
.ydb{bottom:739.422000px;}
.y7b{bottom:739.446000px;}
.y2f{bottom:740.688000px;}
.yb5{bottom:743.010000px;}
.y7{bottom:754.143000px;}
.y127{bottom:755.747250px;}
.y101{bottom:756.713250px;}
.y55{bottom:758.886750px;}
.yda{bottom:759.828750px;}
.y7a{bottom:759.852750px;}
.y2e{bottom:760.939500px;}
.yb4{bottom:762.968250px;}
.y126{bottom:776.740500px;}
.y100{bottom:777.568500px;}
.y54{bottom:779.431500px;}
.yd9{bottom:780.235500px;}
.y79{bottom:780.259500px;}
.y2d{bottom:781.191000px;}
.yb3{bottom:782.926500px;}
.y125{bottom:797.733750px;}
.yff{bottom:798.423750px;}
.y53{bottom:799.976250px;}
.yd8{bottom:800.642250px;}
.y78{bottom:800.666250px;}
.y2c{bottom:801.442500px;}
.yb2{bottom:802.884750px;}
.y124{bottom:818.727000px;}
.yfe{bottom:819.279000px;}
.y52{bottom:820.521000px;}
.y6{bottom:821.038500px;}
.yd7{bottom:821.049000px;}
.y77{bottom:821.073000px;}
.y2b{bottom:821.694000px;}
.yb1{bottom:822.843000px;}
.y5{bottom:839.038500px;}
.y123{bottom:839.720250px;}
.yfd{bottom:840.134250px;}
.y51{bottom:841.065750px;}
.yd6{bottom:841.455750px;}
.y76{bottom:841.479750px;}
.y2a{bottom:841.945500px;}
.yb0{bottom:842.801250px;}
.y4{bottom:857.038500px;}
.y122{bottom:860.713500px;}
.yfc{bottom:860.989500px;}
.y50{bottom:861.610500px;}
.yd5{bottom:861.862500px;}
.y75{bottom:861.886500px;}
.y29{bottom:862.197000px;}
.yaf{bottom:862.759500px;}
.y121{bottom:881.706750px;}
.yfb{bottom:881.844750px;}
.y4f{bottom:882.155250px;}
.yd4{bottom:882.269250px;}
.y74{bottom:882.293250px;}
.y28{bottom:882.448500px;}
.yae{bottom:882.717750px;}
.y3{bottom:885.673500px;}
.yad{bottom:902.676000px;}
.y27{bottom:902.700000px;}
.y2{bottom:903.673500px;}
.yac{bottom:948.382500px;}
.y26{bottom:948.406500px;}
.hc{height:29.039941px;}
.hf{height:32.790586px;}
.h9{height:40.757812px;}
.hd{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h11{height:56.041992px;}
.hb{height:57.333984px;}
.h8{height:58.589355px;}
.h10{height:60.200684px;}
.h2{height:63.684082px;}
.ha{height:65.934082px;}
.he{height:66.330082px;}
.h5{height:71.326172px;}
.h6{height:91.705078px;}
.h7{height:169.153583px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x6{left:89.100600px;}
.x7{left:99.921150px;}
.x5{left:106.297425px;}
.x4{left:117.867000px;}
.x2{left:233.857500px;}
.x8{left:414.637500px;}
.x1{left:609.670500px;}
@media print{
.v3{vertical-align:-16.720000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.034667pt;}
.v1{vertical-align:72.000000pt;}
.ls23{letter-spacing:-6.440000pt;}
.ls2c{letter-spacing:-5.600000pt;}
.ls1a{letter-spacing:-1.680000pt;}
.ls13{letter-spacing:-1.226667pt;}
.ls12{letter-spacing:-0.736000pt;}
.ls11{letter-spacing:-0.674667pt;}
.lsf{letter-spacing:-0.613333pt;}
.ls1d{letter-spacing:-0.490667pt;}
.ls20{letter-spacing:-0.429333pt;}
.ls10{letter-spacing:-0.368000pt;}
.ls6{letter-spacing:-0.306667pt;}
.ls2b{letter-spacing:-0.280000pt;}
.ls24{letter-spacing:-0.245333pt;}
.ls1f{letter-spacing:-0.184000pt;}
.ls14{letter-spacing:-0.122667pt;}
.ls1c{letter-spacing:-0.061333pt;}
.ls2a{letter-spacing:-0.056000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.002807pt;}
.ls4{letter-spacing:0.061333pt;}
.ls7{letter-spacing:0.122667pt;}
.ls19{letter-spacing:0.184000pt;}
.ls21{letter-spacing:0.245333pt;}
.ls2{letter-spacing:0.306667pt;}
.lsd{letter-spacing:0.368000pt;}
.lsb{letter-spacing:0.429333pt;}
.lsa{letter-spacing:0.490667pt;}
.lse{letter-spacing:0.552000pt;}
.ls3{letter-spacing:0.613333pt;}
.ls15{letter-spacing:0.674667pt;}
.ls1b{letter-spacing:0.736000pt;}
.ls16{letter-spacing:0.858667pt;}
.ls17{letter-spacing:0.920000pt;}
.lsc{letter-spacing:2.426667pt;}
.ls0{letter-spacing:3.466667pt;}
.ls28{letter-spacing:4.800000pt;}
.ls1{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.546667pt;}
.ls25{letter-spacing:5.600000pt;}
.ls1e{letter-spacing:5.826667pt;}
.ls22{letter-spacing:6.440000pt;}
.ls9{letter-spacing:6.872000pt;}
.ls27{letter-spacing:8.120000pt;}
.ls29{letter-spacing:8.344000pt;}
.ls26{letter-spacing:8.400000pt;}
.ws2{word-spacing:-49.758281pt;}
.ws1{word-spacing:-26.976000pt;}
.ws1f{word-spacing:-21.336000pt;}
.ws0{word-spacing:-18.733333pt;}
.wsb{word-spacing:-18.154667pt;}
.wsa{word-spacing:-17.848000pt;}
.ws7{word-spacing:-17.786667pt;}
.ws6{word-spacing:-17.602667pt;}
.wsc{word-spacing:-17.541333pt;}
.ws1d{word-spacing:-17.480000pt;}
.ws1a{word-spacing:-17.418667pt;}
.ws13{word-spacing:-17.357333pt;}
.ws4{word-spacing:-17.296000pt;}
.ws3{word-spacing:-17.234667pt;}
.ws14{word-spacing:-17.050667pt;}
.ws15{word-spacing:-16.928000pt;}
.ws8{word-spacing:-16.866667pt;}
.ws9{word-spacing:-16.621333pt;}
.ws21{word-spacing:-15.736000pt;}
.ws1c{word-spacing:-15.517333pt;}
.ws11{word-spacing:-15.456000pt;}
.ws1e{word-spacing:-15.394667pt;}
.ws16{word-spacing:-15.333333pt;}
.wse{word-spacing:-15.210667pt;}
.wsd{word-spacing:-15.149333pt;}
.ws1b{word-spacing:-14.965333pt;}
.ws12{word-spacing:-14.842667pt;}
.ws17{word-spacing:-14.720000pt;}
.ws20{word-spacing:-13.832000pt;}
.wsf{word-spacing:-13.488000pt;}
.ws19{word-spacing:-11.856000pt;}
.ws10{word-spacing:-11.808000pt;}
.ws18{word-spacing:-10.340800pt;}
.ws22{word-spacing:-8.232000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1436.224000pt;}
._14{margin-left:-14.314667pt;}
._f{margin-left:-12.381333pt;}
._15{margin-left:-11.360802pt;}
._12{margin-left:-10.351198pt;}
._13{margin-left:-8.592000pt;}
._e{margin-left:-7.370667pt;}
._10{margin-left:-6.384000pt;}
._b{margin-left:-5.386667pt;}
._3{margin-left:-4.242667pt;}
._a{margin-left:-2.560000pt;}
._2{margin-left:-1.600000pt;}
._7{width:1.096000pt;}
._9{width:2.666667pt;}
._1{width:3.626667pt;}
._d{width:4.690667pt;}
._4{width:5.600000pt;}
._6{width:6.880000pt;}
._8{width:8.130667pt;}
._c{width:9.191885pt;}
._16{width:11.968573pt;}
._5{width:12.960000pt;}
._11{width:16.755565pt;}
.fsb{font-size:30.400000pt;}
.fsa{font-size:36.800000pt;}
.fs9{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs6{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.371200pt;}
.y25{bottom:50.392000pt;}
.y73{bottom:94.489333pt;}
.yfa{bottom:97.290667pt;}
.y24{bottom:97.384000pt;}
.y9a{bottom:97.450000pt;}
.y120{bottom:97.956000pt;}
.yab{bottom:98.002000pt;}
.y4e{bottom:98.630667pt;}
.yd3{bottom:98.645733pt;}
.y72{bottom:113.333333pt;}
.y140{bottom:114.419467pt;}
.yf9{bottom:115.292000pt;}
.y23{bottom:115.385333pt;}
.y99{bottom:115.589333pt;}
.yaa{bottom:116.141333pt;}
.y11f{bottom:116.494000pt;}
.y4d{bottom:116.892667pt;}
.y13f{bottom:132.419467pt;}
.yf8{bottom:133.293333pt;}
.y22{bottom:133.386667pt;}
.y98{bottom:133.590667pt;}
.ya9{bottom:134.280667pt;}
.y11e{bottom:135.032000pt;}
.y4c{bottom:135.292667pt;}
.yd2{bottom:146.062000pt;}
.y13e{bottom:150.420000pt;}
.yf7{bottom:151.294667pt;}
.y21{bottom:151.388000pt;}
.y97{bottom:151.592000pt;}
.ya8{bottom:152.420000pt;}
.y11d{bottom:153.570000pt;}
.y4b{bottom:153.692667pt;}
.y71{bottom:163.178667pt;}
.yd1{bottom:163.802667pt;}
.yf6{bottom:169.296000pt;}
.y20{bottom:169.389333pt;}
.y96{bottom:169.593333pt;}
.ya7{bottom:170.559333pt;}
.y11c{bottom:172.108000pt;}
.y4a{bottom:172.353333pt;}
.y70{bottom:181.440667pt;}
.yd0{bottom:181.543333pt;}
.y13d{bottom:181.753333pt;}
.yf5{bottom:187.297333pt;}
.y1f{bottom:187.390667pt;}
.y95{bottom:187.594667pt;}
.ya6{bottom:188.698667pt;}
.y49{bottom:190.354667pt;}
.y11b{bottom:190.646000pt;}
.ycf{bottom:199.284000pt;}
.y6f{bottom:199.702667pt;}
.yf4{bottom:205.298667pt;}
.y1e{bottom:205.392000pt;}
.y94{bottom:205.596000pt;}
.ya5{bottom:206.838000pt;}
.y48{bottom:208.356000pt;}
.y11a{bottom:209.184000pt;}
.yce{bottom:217.024667pt;}
.y6e{bottom:217.964667pt;}
.yf3{bottom:223.300000pt;}
.y1d{bottom:223.393333pt;}
.y93{bottom:223.597333pt;}
.ya4{bottom:224.977333pt;}
.y47{bottom:226.357333pt;}
.y13c{bottom:226.408000pt;}
.y119{bottom:227.722000pt;}
.ycd{bottom:234.765333pt;}
.y6d{bottom:236.226667pt;}
.yf2{bottom:241.301333pt;}
.y1c{bottom:241.394667pt;}
.y92{bottom:241.598667pt;}
.ya3{bottom:243.116667pt;}
.y13b{bottom:243.614000pt;}
.y46{bottom:244.358667pt;}
.y118{bottom:246.260000pt;}
.ycc{bottom:252.506000pt;}
.y6c{bottom:254.488667pt;}
.yf1{bottom:259.302667pt;}
.y1b{bottom:259.396000pt;}
.y91{bottom:259.600000pt;}
.ya2{bottom:261.256000pt;}
.y45{bottom:262.360000pt;}
.y117{bottom:264.798000pt;}
.y13a{bottom:268.380000pt;}
.ycb{bottom:270.246667pt;}
.y6b{bottom:272.750667pt;}
.yf0{bottom:277.304000pt;}
.y1a{bottom:277.397333pt;}
.y90{bottom:277.601333pt;}
.ya1{bottom:279.395333pt;}
.y44{bottom:280.361333pt;}
.y116{bottom:283.336000pt;}
.yca{bottom:287.987333pt;}
.y6a{bottom:291.012667pt;}
.y139{bottom:293.132000pt;}
.yef{bottom:295.305333pt;}
.y19{bottom:295.398667pt;}
.y8f{bottom:295.602667pt;}
.ya0{bottom:297.534667pt;}
.y43{bottom:298.362667pt;}
.y115{bottom:301.874000pt;}
.yc9{bottom:305.728000pt;}
.y69{bottom:309.274667pt;}
.yee{bottom:313.306667pt;}
.y18{bottom:313.400000pt;}
.y8e{bottom:313.604000pt;}
.y9f{bottom:315.674000pt;}
.y42{bottom:316.364000pt;}
.y138{bottom:317.884000pt;}
.y114{bottom:320.412000pt;}
.yc8{bottom:323.468667pt;}
.y68{bottom:327.536667pt;}
.yed{bottom:331.308000pt;}
.y17{bottom:331.401333pt;}
.y8d{bottom:331.605333pt;}
.y9e{bottom:333.813333pt;}
.y41{bottom:334.365333pt;}
.y137{bottom:335.090000pt;}
.y113{bottom:338.950000pt;}
.yc7{bottom:341.209333pt;}
.y67{bottom:345.798667pt;}
.yec{bottom:349.309333pt;}
.y16{bottom:349.402667pt;}
.y8c{bottom:349.606667pt;}
.y9d{bottom:351.952667pt;}
.y40{bottom:352.366667pt;}
.y112{bottom:357.488000pt;}
.yc6{bottom:358.950000pt;}
.y136{bottom:359.856000pt;}
.y66{bottom:364.060667pt;}
.yeb{bottom:367.310667pt;}
.y15{bottom:367.404000pt;}
.y8b{bottom:367.608000pt;}
.y9c{bottom:370.092000pt;}
.y3f{bottom:370.368000pt;}
.y111{bottom:376.026000pt;}
.yc5{bottom:376.690667pt;}
.y65{bottom:382.322667pt;}
.y135{bottom:384.610667pt;}
.yea{bottom:385.312000pt;}
.y14{bottom:385.405333pt;}
.y8a{bottom:385.609333pt;}
.y9b{bottom:388.231333pt;}
.y3e{bottom:388.369333pt;}
.yc4{bottom:394.431333pt;}
.y110{bottom:394.564000pt;}
.y64{bottom:400.584667pt;}
.y133{bottom:401.802667pt;}
.y134{bottom:401.814667pt;}
.ye9{bottom:403.313333pt;}
.y13{bottom:403.406667pt;}
.y89{bottom:403.610667pt;}
.y3d{bottom:406.370667pt;}
.yc3{bottom:412.172000pt;}
.y10f{bottom:413.102000pt;}
.y63{bottom:418.846667pt;}
.y12{bottom:421.408000pt;}
.ye8{bottom:421.452667pt;}
.y88{bottom:421.612000pt;}
.y3c{bottom:424.372000pt;}
.y132{bottom:426.554667pt;}
.yc2{bottom:429.912667pt;}
.y10e{bottom:431.640000pt;}
.y62{bottom:437.108667pt;}
.y11{bottom:439.409333pt;}
.ye7{bottom:439.592000pt;}
.y87{bottom:439.613333pt;}
.y3b{bottom:442.373333pt;}
.yc1{bottom:447.653333pt;}
.y10d{bottom:450.178000pt;}
.y131{bottom:451.320667pt;}
.y61{bottom:455.370667pt;}
.y10{bottom:457.410667pt;}
.ye6{bottom:457.731333pt;}
.y86{bottom:457.752667pt;}
.y3a{bottom:460.374667pt;}
.yc0{bottom:465.394000pt;}
.y130{bottom:468.526667pt;}
.y10c{bottom:468.716000pt;}
.y60{bottom:473.632667pt;}
.yf{bottom:475.412000pt;}
.ye5{bottom:475.870667pt;}
.y85{bottom:475.892000pt;}
.y39{bottom:478.376000pt;}
.ybf{bottom:483.134667pt;}
.y12f{bottom:485.732667pt;}
.y10b{bottom:487.254000pt;}
.y5f{bottom:491.894667pt;}
.ye{bottom:493.413333pt;}
.ye4{bottom:494.010000pt;}
.y84{bottom:494.031333pt;}
.y38{bottom:496.377333pt;}
.ybe{bottom:500.875333pt;}
.y10a{bottom:505.792000pt;}
.y5e{bottom:510.156667pt;}
.yd{bottom:511.414667pt;}
.yc{bottom:511.416000pt;}
.ye3{bottom:512.149333pt;}
.y83{bottom:512.170667pt;}
.y37{bottom:514.378667pt;}
.y12e{bottom:516.266667pt;}
.ybd{bottom:518.616000pt;}
.y109{bottom:524.330000pt;}
.y5d{bottom:528.418667pt;}
.ye2{bottom:530.288667pt;}
.y82{bottom:530.310000pt;}
.y36{bottom:532.380000pt;}
.ybc{bottom:536.356667pt;}
.y108{bottom:542.868000pt;}
.y5c{bottom:546.680667pt;}
.ye1{bottom:548.428000pt;}
.y81{bottom:548.449333pt;}
.y35{bottom:550.381333pt;}
.ybb{bottom:554.097333pt;}
.y12d{bottom:559.811333pt;}
.y107{bottom:561.406000pt;}
.y5b{bottom:564.942667pt;}
.yb{bottom:565.949333pt;}
.ye0{bottom:566.567333pt;}
.y80{bottom:566.588667pt;}
.y34{bottom:568.382667pt;}
.yba{bottom:571.838000pt;}
.y12c{bottom:578.472000pt;}
.y106{bottom:579.944000pt;}
.y5a{bottom:583.204667pt;}
.ya{bottom:583.282667pt;}
.ydf{bottom:584.706667pt;}
.y7f{bottom:584.728000pt;}
.y33{bottom:586.384000pt;}
.yb9{bottom:589.490667pt;}
.y12b{bottom:597.132667pt;}
.y105{bottom:598.482000pt;}
.y59{bottom:601.518000pt;}
.yde{bottom:602.846000pt;}
.y7e{bottom:602.867333pt;}
.y32{bottom:604.385333pt;}
.yb8{bottom:607.231333pt;}
.y12a{bottom:615.793333pt;}
.y104{bottom:617.020000pt;}
.y9{bottom:619.149333pt;}
.y58{bottom:619.780000pt;}
.ydd{bottom:620.985333pt;}
.y7d{bottom:621.006667pt;}
.y31{bottom:622.386667pt;}
.yb7{bottom:624.972000pt;}
.y129{bottom:634.454000pt;}
.y103{bottom:635.558000pt;}
.y57{bottom:638.042000pt;}
.ydc{bottom:639.124667pt;}
.y7c{bottom:639.146000pt;}
.y30{bottom:640.388000pt;}
.y8{bottom:641.550667pt;}
.yb6{bottom:642.712667pt;}
.y128{bottom:653.114667pt;}
.y102{bottom:654.096000pt;}
.y56{bottom:656.304000pt;}
.ydb{bottom:657.264000pt;}
.y7b{bottom:657.285333pt;}
.y2f{bottom:658.389333pt;}
.yb5{bottom:660.453333pt;}
.y7{bottom:670.349333pt;}
.y127{bottom:671.775333pt;}
.y101{bottom:672.634000pt;}
.y55{bottom:674.566000pt;}
.yda{bottom:675.403333pt;}
.y7a{bottom:675.424667pt;}
.y2e{bottom:676.390667pt;}
.yb4{bottom:678.194000pt;}
.y126{bottom:690.436000pt;}
.y100{bottom:691.172000pt;}
.y54{bottom:692.828000pt;}
.yd9{bottom:693.542667pt;}
.y79{bottom:693.564000pt;}
.y2d{bottom:694.392000pt;}
.yb3{bottom:695.934667pt;}
.y125{bottom:709.096667pt;}
.yff{bottom:709.710000pt;}
.y53{bottom:711.090000pt;}
.yd8{bottom:711.682000pt;}
.y78{bottom:711.703333pt;}
.y2c{bottom:712.393333pt;}
.yb2{bottom:713.675333pt;}
.y124{bottom:727.757333pt;}
.yfe{bottom:728.248000pt;}
.y52{bottom:729.352000pt;}
.y6{bottom:729.812000pt;}
.yd7{bottom:729.821333pt;}
.y77{bottom:729.842667pt;}
.y2b{bottom:730.394667pt;}
.yb1{bottom:731.416000pt;}
.y5{bottom:745.812000pt;}
.y123{bottom:746.418000pt;}
.yfd{bottom:746.786000pt;}
.y51{bottom:747.614000pt;}
.yd6{bottom:747.960667pt;}
.y76{bottom:747.982000pt;}
.y2a{bottom:748.396000pt;}
.yb0{bottom:749.156667pt;}
.y4{bottom:761.812000pt;}
.y122{bottom:765.078667pt;}
.yfc{bottom:765.324000pt;}
.y50{bottom:765.876000pt;}
.yd5{bottom:766.100000pt;}
.y75{bottom:766.121333pt;}
.y29{bottom:766.397333pt;}
.yaf{bottom:766.897333pt;}
.y121{bottom:783.739333pt;}
.yfb{bottom:783.862000pt;}
.y4f{bottom:784.138000pt;}
.yd4{bottom:784.239333pt;}
.y74{bottom:784.260667pt;}
.y28{bottom:784.398667pt;}
.yae{bottom:784.638000pt;}
.y3{bottom:787.265333pt;}
.yad{bottom:802.378667pt;}
.y27{bottom:802.400000pt;}
.y2{bottom:803.265333pt;}
.yac{bottom:843.006667pt;}
.y26{bottom:843.028000pt;}
.hc{height:25.813281pt;}
.hf{height:29.147187pt;}
.h9{height:36.229167pt;}
.hd{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h11{height:49.815104pt;}
.hb{height:50.963542pt;}
.h8{height:52.079427pt;}
.h10{height:53.511719pt;}
.h2{height:56.608073pt;}
.ha{height:58.608073pt;}
.he{height:58.960073pt;}
.h5{height:63.401042pt;}
.h6{height:81.515625pt;}
.h7{height:150.358740pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x6{left:79.200533pt;}
.x7{left:88.818800pt;}
.x5{left:94.486600pt;}
.x4{left:104.770667pt;}
.x2{left:207.873333pt;}
.x8{left:368.566667pt;}
.x1{left:541.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; }
  