
    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_85f24d04b4b671acb8d3b5a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_4afe77a711a7a688846b5a71.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_f6c5b347eae364d20a31c2ba.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_26209bc0aa28fadc6b7641bf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_210f9fef21988681944dad93.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:27.360000px;}
.ls1{letter-spacing:179.352000px;}
.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;}
}
.wsc{word-spacing:-55.944000px;}
.ws6{word-spacing:-38.657700px;}
.wsa4{word-spacing:-38.656800px;}
.ws85{word-spacing:-38.655900px;}
.wsaf{word-spacing:-38.654100px;}
.ws11{word-spacing:-38.653200px;}
.wsc4{word-spacing:-38.652300px;}
.ws9e{word-spacing:-38.649000px;}
.ws5{word-spacing:-38.647800px;}
.ws23{word-spacing:-38.646900px;}
.wsc8{word-spacing:-38.639700px;}
.ws5a{word-spacing:-38.635200px;}
.ws87{word-spacing:-38.439000px;}
.ws35{word-spacing:-38.437200px;}
.ws20{word-spacing:-38.436600px;}
.ws3e{word-spacing:-38.436300px;}
.ws9{word-spacing:-38.435400px;}
.ws98{word-spacing:-38.431800px;}
.wsc0{word-spacing:-38.430900px;}
.ws19{word-spacing:-38.421300px;}
.wsb0{word-spacing:-38.410500px;}
.ws3{word-spacing:-38.374200px;}
.ws82{word-spacing:-38.367900px;}
.wsc1{word-spacing:-38.359800px;}
.ws66{word-spacing:-38.166000px;}
.ws2e{word-spacing:-38.162400px;}
.wsb{word-spacing:-38.160000px;}
.ws42{word-spacing:-38.158200px;}
.ws25{word-spacing:-38.156400px;}
.ws47{word-spacing:-38.153700px;}
.ws8f{word-spacing:-38.149200px;}
.ws75{word-spacing:-38.148300px;}
.ws3f{word-spacing:-38.145900px;}
.wsc9{word-spacing:-38.142000px;}
.ws64{word-spacing:-38.137800px;}
.wsa1{word-spacing:-37.948200px;}
.ws9f{word-spacing:-37.946400px;}
.wsc3{word-spacing:-37.944600px;}
.ws0{word-spacing:-37.944000px;}
.ws38{word-spacing:-37.942200px;}
.ws2b{word-spacing:-37.941300px;}
.ws5c{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws27{word-spacing:-37.936800px;}
.ws83{word-spacing:-37.935900px;}
.wsa3{word-spacing:-37.935000px;}
.wsa2{word-spacing:-37.934700px;}
.ws7e{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws14{word-spacing:-37.929600px;}
.ws46{word-spacing:-37.926300px;}
.wsa0{word-spacing:-37.926000px;}
.ws8e{word-spacing:-37.908000px;}
.wsac{word-spacing:-37.723200px;}
.ws94{word-spacing:-37.717800px;}
.ws3b{word-spacing:-37.717200px;}
.wsb3{word-spacing:-37.701000px;}
.ws40{word-spacing:-37.683300px;}
.ws65{word-spacing:-37.224000px;}
.wsa{word-spacing:-37.222200px;}
.ws21{word-spacing:-37.205100px;}
.ws67{word-spacing:-35.784000px;}
.ws5b{word-spacing:-35.262000px;}
.ws1c{word-spacing:-35.053200px;}
.ws22{word-spacing:-34.339200px;}
.ws79{word-spacing:-34.329600px;}
.wsf{word-spacing:-33.840000px;}
.ws91{word-spacing:-33.622200px;}
.ws6d{word-spacing:-33.618600px;}
.ws7b{word-spacing:-33.611400px;}
.ws8{word-spacing:-33.547800px;}
.ws71{word-spacing:-32.904600px;}
.wsa8{word-spacing:-32.887800px;}
.wsab{word-spacing:-32.175000px;}
.wsb4{word-spacing:-31.957200px;}
.wsba{word-spacing:-31.667400px;}
.wsbd{word-spacing:-31.665600px;}
.ws4a{word-spacing:-31.461300px;}
.ws81{word-spacing:-31.240800px;}
.ws16{word-spacing:-31.239000px;}
.ws96{word-spacing:-30.731400px;}
.ws72{word-spacing:-30.231000px;}
.ws6c{word-spacing:-30.167100px;}
.wsbe{word-spacing:-29.797200px;}
.ws24{word-spacing:-29.520000px;}
.wsa9{word-spacing:-29.293200px;}
.ws7d{word-spacing:-29.071200px;}
.ws28{word-spacing:-28.800000px;}
.ws1a{word-spacing:-28.796400px;}
.ws55{word-spacing:-28.794000px;}
.ws1e{word-spacing:-28.578600px;}
.ws32{word-spacing:-28.075200px;}
.wsb1{word-spacing:-27.640800px;}
.ws56{word-spacing:-27.356400px;}
.ws9c{word-spacing:-27.131400px;}
.ws52{word-spacing:-27.126900px;}
.ws4d{word-spacing:-26.923200px;}
.ws33{word-spacing:-26.919000px;}
.ws97{word-spacing:-26.913600px;}
.wsbb{word-spacing:-26.636400px;}
.ws31{word-spacing:-26.619300px;}
.ws8b{word-spacing:-26.617800px;}
.ws53{word-spacing:-26.424000px;}
.wsc5{word-spacing:-26.423100px;}
.ws58{word-spacing:-26.421000px;}
.ws18{word-spacing:-26.415000px;}
.ws70{word-spacing:-26.413200px;}
.ws4b{word-spacing:-25.914000px;}
.ws6b{word-spacing:-25.691400px;}
.ws8d{word-spacing:-25.192800px;}
.ws17{word-spacing:-24.971400px;}
.ws76{word-spacing:-24.253200px;}
.ws74{word-spacing:-24.247800px;}
.ws2a{word-spacing:-23.536800px;}
.ws99{word-spacing:-23.532300px;}
.wsaa{word-spacing:-23.526000px;}
.ws73{word-spacing:-23.522400px;}
.ws7a{word-spacing:-23.328000px;}
.ws8c{word-spacing:-22.817700px;}
.ws57{word-spacing:-22.813200px;}
.ws90{word-spacing:-22.809600px;}
.ws26{word-spacing:-22.320000px;}
.ws1b{word-spacing:-22.104000px;}
.ws54{word-spacing:-22.102800px;}
.wse{word-spacing:-21.356100px;}
.ws93{word-spacing:-20.661900px;}
.ws95{word-spacing:-20.656800px;}
.ws15{word-spacing:-20.647800px;}
.ws49{word-spacing:-20.426400px;}
.ws9d{word-spacing:-20.152200px;}
.ws6e{word-spacing:-19.422000px;}
.ws13{word-spacing:-18.997200px;}
.ws12{word-spacing:-18.712800px;}
.wsae{word-spacing:-18.491400px;}
.ws7{word-spacing:-18.472500px;}
.ws1d{word-spacing:-18.277200px;}
.wsbf{word-spacing:-17.280000px;}
.wsb7{word-spacing:-17.025000px;}
.wsb8{word-spacing:-16.839000px;}
.ws59{word-spacing:-16.562400px;}
.ws62{word-spacing:-16.105500px;}
.ws92{word-spacing:-15.834600px;}
.ws7c{word-spacing:-15.613200px;}
.ws51{word-spacing:-14.677200px;}
.wsa5{word-spacing:-14.184000px;}
.ws10{word-spacing:-14.179200px;}
.ws5f{word-spacing:-14.171400px;}
.ws5e{word-spacing:-13.944600px;}
.ws63{word-spacing:-13.674600px;}
.ws60{word-spacing:-13.243500px;}
.ws7f{word-spacing:-13.227600px;}
.ws5d{word-spacing:-13.223100px;}
.wsc2{word-spacing:-12.384000px;}
.ws69{word-spacing:-11.800800px;}
.wsad{word-spacing:-11.079000px;}
.ws61{word-spacing:-10.569600px;}
.ws1f{word-spacing:-9.637200px;}
.wsc6{word-spacing:-9.148200px;}
.wsd{word-spacing:-9.141300px;}
.ws77{word-spacing:-8.628000px;}
.ws4e{word-spacing:-8.618400px;}
.wsa6{word-spacing:-8.417400px;}
.wsb2{word-spacing:-8.411400px;}
.ws9b{word-spacing:-8.197200px;}
.ws41{word-spacing:-6.246000px;}
.wsb9{word-spacing:-5.029200px;}
.ws9a{word-spacing:-4.826400px;}
.wsc7{word-spacing:-4.110000px;}
.ws4c{word-spacing:-4.093800px;}
.ws88{word-spacing:-3.856500px;}
.ws39{word-spacing:-1.419300px;}
.ws68{word-spacing:-1.215600px;}
.ws3a{word-spacing:-1.000800px;}
.ws34{word-spacing:0.000000px;}
.ws36{word-spacing:0.010200px;}
.ws3c{word-spacing:0.512100px;}
.ws3d{word-spacing:0.738000px;}
.ws37{word-spacing:0.964500px;}
.ws6f{word-spacing:1.165500px;}
.ws86{word-spacing:1.890900px;}
.wsb5{word-spacing:2.886000px;}
.ws2c{word-spacing:3.416700px;}
.ws4f{word-spacing:3.820800px;}
.ws2d{word-spacing:4.026000px;}
.ws50{word-spacing:4.334400px;}
.ws2f{word-spacing:7.704000px;}
.ws30{word-spacing:7.923600px;}
.wsca{word-spacing:8.146800px;}
.wsa7{word-spacing:8.659800px;}
.ws6a{word-spacing:10.297200px;}
.ws78{word-spacing:12.476400px;}
.ws45{word-spacing:12.477600px;}
.ws80{word-spacing:13.905000px;}
.wsb6{word-spacing:20.394600px;}
.wsbc{word-spacing:20.889000px;}
.ws29{word-spacing:42.921000px;}
.ws84{word-spacing:94.326300px;}
.ws89{word-spacing:95.987700px;}
.ws44{word-spacing:101.951400px;}
.ws48{word-spacing:135.602700px;}
.ws43{word-spacing:138.488100px;}
.ws8a{word-spacing:145.886400px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._10{width:19.925100px;}
._e{width:22.093200px;}
._6{width:23.322000px;}
._1e{width:24.595200px;}
._9{width:26.199000px;}
._11{width:27.648000px;}
._c{width:28.796400px;}
._b{width:30.709800px;}
._a{width:32.175600px;}
._13{width:33.554400px;}
._d{width:34.920000px;}
._1{width:36.000000px;}
._22{width:37.011600px;}
._8{width:38.217600px;}
._24{width:39.332400px;}
._1a{width:40.605600px;}
._19{width:41.612400px;}
._7{width:42.984000px;}
._f{width:44.989200px;}
._1b{width:46.820400px;}
._5{width:48.021300px;}
._21{width:49.675200px;}
._17{width:50.886000px;}
._26{width:52.182600px;}
._18{width:53.335800px;}
._16{width:55.728000px;}
._1d{width:58.522500px;}
._14{width:61.019700px;}
._15{width:65.002800px;}
._23{width:66.012600px;}
._1c{width:68.161200px;}
._1f{width:70.344000px;}
._27{width:73.440000px;}
._25{width:77.512800px;}
._12{width:100.350000px;}
._20{width:153.780300px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:3.780000px;}
.y7{bottom:4.471500px;}
.y9f{bottom:4.815000px;}
.y39{bottom:4.890000px;}
.y92{bottom:4.921500px;}
.y96{bottom:4.996500px;}
.y7e{bottom:5.011500px;}
.y3d{bottom:5.070000px;}
.y85{bottom:5.086500px;}
.y42{bottom:5.146500px;}
.y3b{bottom:15.330000px;}
.y40{bottom:15.405000px;}
.y81{bottom:15.450000px;}
.y9e{bottom:25.515000px;}
.y3c{bottom:25.590000px;}
.y41{bottom:25.665000px;}
.y80{bottom:25.711500px;}
.y84{bottom:25.786500px;}
.y9d{bottom:46.215000px;}
.y9c{bottom:66.736500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y30{bottom:99.975000px;}
.y98{bottom:108.975000px;}
.y2f{bottom:120.675000px;}
.y88{bottom:124.636500px;}
.y97{bottom:129.675000px;}
.y5d{bottom:141.375000px;}
.y2e{bottom:142.636500px;}
.y5c{bottom:162.075000px;}
.y2d{bottom:163.336500px;}
.y95{bottom:169.500000px;}
.y5b{bottom:182.775000px;}
.yb7{bottom:183.315000px;}
.y2c{bottom:185.296500px;}
.y87{bottom:186.915000px;}
.y94{bottom:194.775000px;}
.y5a{bottom:203.475000px;}
.yb6{bottom:204.015000px;}
.y2b{bottom:205.996500px;}
.y86{bottom:207.615000px;}
.y93{bottom:219.975000px;}
.y59{bottom:224.175000px;}
.yb5{bottom:224.715000px;}
.y2a{bottom:226.696500px;}
.y58{bottom:244.875000px;}
.y91{bottom:245.175000px;}
.yb4{bottom:245.415000px;}
.y83{bottom:247.350000px;}
.y29{bottom:247.396500px;}
.y57{bottom:265.575000px;}
.yb3{bottom:266.115000px;}
.y28{bottom:268.096500px;}
.y56{bottom:286.275000px;}
.yb2{bottom:286.815000px;}
.y27{bottom:288.795000px;}
.y82{bottom:293.325000px;}
.y90{bottom:295.275000px;}
.y55{bottom:306.975000px;}
.yb1{bottom:307.515000px;}
.y26{bottom:309.496500px;}
.y54{bottom:327.675000px;}
.yb0{bottom:328.215000px;}
.y25{bottom:330.196500px;}
.y8f{bottom:336.855000px;}
.y7f{bottom:339.225000px;}
.y53{bottom:348.375000px;}
.yaf{bottom:348.915000px;}
.y24{bottom:350.896500px;}
.y8e{bottom:357.555000px;}
.y52{bottom:369.075000px;}
.yae{bottom:369.615000px;}
.y23{bottom:371.596500px;}
.y8d{bottom:378.255000px;}
.y7d{bottom:385.125000px;}
.y51{bottom:389.775000px;}
.yad{bottom:390.315000px;}
.y22{bottom:392.295000px;}
.y8c{bottom:398.955000px;}
.y50{bottom:410.475000px;}
.yac{bottom:411.015000px;}
.y21{bottom:412.996500px;}
.y8b{bottom:419.655000px;}
.y4f{bottom:431.175000px;}
.yab{bottom:431.715000px;}
.y20{bottom:433.696500px;}
.y7c{bottom:434.775000px;}
.y8a{bottom:440.355000px;}
.y4e{bottom:451.875000px;}
.y1f{bottom:454.396500px;}
.y7b{bottom:455.475000px;}
.y4d{bottom:472.575000px;}
.y1e{bottom:475.096500px;}
.y7a{bottom:476.175000px;}
.y4c{bottom:493.275000px;}
.yaa{bottom:494.175000px;}
.y1d{bottom:495.796500px;}
.y79{bottom:496.875000px;}
.y89{bottom:502.815000px;}
.y4b{bottom:513.975000px;}
.y1c{bottom:516.496500px;}
.y78{bottom:517.575000px;}
.y4a{bottom:534.675000px;}
.ya9{bottom:535.755000px;}
.y1b{bottom:537.195000px;}
.y77{bottom:538.275000px;}
.y49{bottom:555.375000px;}
.ya8{bottom:556.455000px;}
.y1a{bottom:557.896500px;}
.y76{bottom:558.975000px;}
.y48{bottom:576.075000px;}
.ya7{bottom:577.155000px;}
.y19{bottom:578.596500px;}
.y75{bottom:579.675000px;}
.y47{bottom:596.775000px;}
.ya6{bottom:597.855000px;}
.y18{bottom:599.295000px;}
.y74{bottom:600.375000px;}
.y46{bottom:617.475000px;}
.ya5{bottom:618.555000px;}
.y17{bottom:619.996500px;}
.y73{bottom:621.075000px;}
.y45{bottom:638.175000px;}
.y16{bottom:640.695000px;}
.y72{bottom:641.775000px;}
.y44{bottom:658.875000px;}
.ya4{bottom:660.315000px;}
.y15{bottom:661.396500px;}
.y71{bottom:662.475000px;}
.y43{bottom:679.575000px;}
.ya3{bottom:681.015000px;}
.y14{bottom:682.096500px;}
.y70{bottom:683.175000px;}
.ya2{bottom:701.715000px;}
.y13{bottom:702.795000px;}
.y6f{bottom:703.875000px;}
.y3f{bottom:719.250000px;}
.ya1{bottom:722.415000px;}
.y12{bottom:723.496500px;}
.y6e{bottom:724.575000px;}
.ya0{bottom:743.115000px;}
.y6d{bottom:745.275000px;}
.y11{bottom:764.895000px;}
.y3e{bottom:765.225000px;}
.y6c{bottom:765.975000px;}
.y9b{bottom:780.600000px;}
.y10{bottom:785.596500px;}
.y6b{bottom:786.675000px;}
.y6a{bottom:807.375000px;}
.y3a{bottom:811.125000px;}
.yf{bottom:827.175000px;}
.y69{bottom:828.075000px;}
.ye{bottom:847.875000px;}
.y68{bottom:848.775000px;}
.y38{bottom:857.025000px;}
.y99{bottom:864.975000px;}
.yd{bottom:868.575000px;}
.y67{bottom:869.475000px;}
.yc{bottom:889.275000px;}
.y66{bottom:890.175000px;}
.y37{bottom:906.736500px;}
.yb{bottom:909.975000px;}
.y65{bottom:910.875000px;}
.y64{bottom:931.575000px;}
.y63{bottom:952.275000px;}
.y36{bottom:969.195000px;}
.y62{bottom:972.975000px;}
.y35{bottom:989.895000px;}
.ya{bottom:993.495000px;}
.y61{bottom:993.675000px;}
.y34{bottom:1011.855000px;}
.y60{bottom:1014.375000px;}
.y33{bottom:1032.555000px;}
.y9{bottom:1035.075000px;}
.y32{bottom:1054.515000px;}
.y5f{bottom:1055.775000px;}
.y31{bottom:1075.215000px;}
.y5e{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.ha{height:21.375000px;}
.h6{height:22.875000px;}
.h9{height:22.950000px;}
.h7{height:43.575000px;}
.h8{height:43.650000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.hb{height:84.300000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w9{width:81.375000px;}
.wa{width:171.675000px;}
.w6{width:173.850000px;}
.w5{width:220.800000px;}
.w8{width:232.725000px;}
.w3{width:237.900000px;}
.w4{width:255.450000px;}
.w7{width:293.025000px;}
.wb{width:336.750000px;}
.wd{width:358.950000px;}
.wc{width:359.025000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.138500px;}
.x13{left:8.145000px;}
.x12{left:119.475000px;}
.xc{left:126.450000px;}
.x1{left:127.620000px;}
.x8{left:137.100000px;}
.x4{left:144.360000px;}
.xf{left:147.750000px;}
.x15{left:159.480000px;}
.x7{left:168.120000px;}
.x10{left:231.300000px;}
.xd{left:302.475000px;}
.xa{left:377.175000px;}
.x11{left:405.150000px;}
.x6{left:418.680000px;}
.x3{left:470.025000px;}
.x14{left:478.425000px;}
.xe{left:597.675000px;}
.xb{left:634.800000px;}
.x5{left:687.600000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:24.320000pt;}
.ls1{letter-spacing:159.424000pt;}
.wsc{word-spacing:-49.728000pt;}
.ws6{word-spacing:-34.362400pt;}
.wsa4{word-spacing:-34.361600pt;}
.ws85{word-spacing:-34.360800pt;}
.wsaf{word-spacing:-34.359200pt;}
.ws11{word-spacing:-34.358400pt;}
.wsc4{word-spacing:-34.357600pt;}
.ws9e{word-spacing:-34.354667pt;}
.ws5{word-spacing:-34.353600pt;}
.ws23{word-spacing:-34.352800pt;}
.wsc8{word-spacing:-34.346400pt;}
.ws5a{word-spacing:-34.342400pt;}
.ws87{word-spacing:-34.168000pt;}
.ws35{word-spacing:-34.166400pt;}
.ws20{word-spacing:-34.165867pt;}
.ws3e{word-spacing:-34.165600pt;}
.ws9{word-spacing:-34.164800pt;}
.ws98{word-spacing:-34.161600pt;}
.wsc0{word-spacing:-34.160800pt;}
.ws19{word-spacing:-34.152267pt;}
.wsb0{word-spacing:-34.142667pt;}
.ws3{word-spacing:-34.110400pt;}
.ws82{word-spacing:-34.104800pt;}
.wsc1{word-spacing:-34.097600pt;}
.ws66{word-spacing:-33.925333pt;}
.ws2e{word-spacing:-33.922133pt;}
.wsb{word-spacing:-33.920000pt;}
.ws42{word-spacing:-33.918400pt;}
.ws25{word-spacing:-33.916800pt;}
.ws47{word-spacing:-33.914400pt;}
.ws8f{word-spacing:-33.910400pt;}
.ws75{word-spacing:-33.909600pt;}
.ws3f{word-spacing:-33.907467pt;}
.wsc9{word-spacing:-33.904000pt;}
.ws64{word-spacing:-33.900267pt;}
.wsa1{word-spacing:-33.731733pt;}
.ws9f{word-spacing:-33.730133pt;}
.wsc3{word-spacing:-33.728533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws38{word-spacing:-33.726400pt;}
.ws2b{word-spacing:-33.725600pt;}
.ws5c{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws27{word-spacing:-33.721600pt;}
.ws83{word-spacing:-33.720800pt;}
.wsa3{word-spacing:-33.720000pt;}
.wsa2{word-spacing:-33.719733pt;}
.ws7e{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws14{word-spacing:-33.715200pt;}
.ws46{word-spacing:-33.712267pt;}
.wsa0{word-spacing:-33.712000pt;}
.ws8e{word-spacing:-33.696000pt;}
.wsac{word-spacing:-33.531733pt;}
.ws94{word-spacing:-33.526933pt;}
.ws3b{word-spacing:-33.526400pt;}
.wsb3{word-spacing:-33.512000pt;}
.ws40{word-spacing:-33.496267pt;}
.ws65{word-spacing:-33.088000pt;}
.wsa{word-spacing:-33.086400pt;}
.ws21{word-spacing:-33.071200pt;}
.ws67{word-spacing:-31.808000pt;}
.ws5b{word-spacing:-31.344000pt;}
.ws1c{word-spacing:-31.158400pt;}
.ws22{word-spacing:-30.523733pt;}
.ws79{word-spacing:-30.515200pt;}
.wsf{word-spacing:-30.080000pt;}
.ws91{word-spacing:-29.886400pt;}
.ws6d{word-spacing:-29.883200pt;}
.ws7b{word-spacing:-29.876800pt;}
.ws8{word-spacing:-29.820267pt;}
.ws71{word-spacing:-29.248533pt;}
.wsa8{word-spacing:-29.233600pt;}
.wsab{word-spacing:-28.600000pt;}
.wsb4{word-spacing:-28.406400pt;}
.wsba{word-spacing:-28.148800pt;}
.wsbd{word-spacing:-28.147200pt;}
.ws4a{word-spacing:-27.965600pt;}
.ws81{word-spacing:-27.769600pt;}
.ws16{word-spacing:-27.768000pt;}
.ws96{word-spacing:-27.316800pt;}
.ws72{word-spacing:-26.872000pt;}
.ws6c{word-spacing:-26.815200pt;}
.wsbe{word-spacing:-26.486400pt;}
.ws24{word-spacing:-26.240000pt;}
.wsa9{word-spacing:-26.038400pt;}
.ws7d{word-spacing:-25.841067pt;}
.ws28{word-spacing:-25.600000pt;}
.ws1a{word-spacing:-25.596800pt;}
.ws55{word-spacing:-25.594667pt;}
.ws1e{word-spacing:-25.403200pt;}
.ws32{word-spacing:-24.955733pt;}
.wsb1{word-spacing:-24.569600pt;}
.ws56{word-spacing:-24.316800pt;}
.ws9c{word-spacing:-24.116800pt;}
.ws52{word-spacing:-24.112800pt;}
.ws4d{word-spacing:-23.931733pt;}
.ws33{word-spacing:-23.928000pt;}
.ws97{word-spacing:-23.923200pt;}
.wsbb{word-spacing:-23.676800pt;}
.ws31{word-spacing:-23.661600pt;}
.ws8b{word-spacing:-23.660267pt;}
.ws53{word-spacing:-23.488000pt;}
.wsc5{word-spacing:-23.487200pt;}
.ws58{word-spacing:-23.485333pt;}
.ws18{word-spacing:-23.480000pt;}
.ws70{word-spacing:-23.478400pt;}
.ws4b{word-spacing:-23.034667pt;}
.ws6b{word-spacing:-22.836800pt;}
.ws8d{word-spacing:-22.393600pt;}
.ws17{word-spacing:-22.196800pt;}
.ws76{word-spacing:-21.558400pt;}
.ws74{word-spacing:-21.553600pt;}
.ws2a{word-spacing:-20.921600pt;}
.ws99{word-spacing:-20.917600pt;}
.wsaa{word-spacing:-20.912000pt;}
.ws73{word-spacing:-20.908800pt;}
.ws7a{word-spacing:-20.736000pt;}
.ws8c{word-spacing:-20.282400pt;}
.ws57{word-spacing:-20.278400pt;}
.ws90{word-spacing:-20.275200pt;}
.ws26{word-spacing:-19.840000pt;}
.ws1b{word-spacing:-19.648000pt;}
.ws54{word-spacing:-19.646933pt;}
.wse{word-spacing:-18.983200pt;}
.ws93{word-spacing:-18.366133pt;}
.ws95{word-spacing:-18.361600pt;}
.ws15{word-spacing:-18.353600pt;}
.ws49{word-spacing:-18.156800pt;}
.ws9d{word-spacing:-17.913067pt;}
.ws6e{word-spacing:-17.264000pt;}
.ws13{word-spacing:-16.886400pt;}
.ws12{word-spacing:-16.633600pt;}
.wsae{word-spacing:-16.436800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws1d{word-spacing:-16.246400pt;}
.wsbf{word-spacing:-15.360000pt;}
.wsb7{word-spacing:-15.133333pt;}
.wsb8{word-spacing:-14.968000pt;}
.ws59{word-spacing:-14.722133pt;}
.ws62{word-spacing:-14.316000pt;}
.ws92{word-spacing:-14.075200pt;}
.ws7c{word-spacing:-13.878400pt;}
.ws51{word-spacing:-13.046400pt;}
.wsa5{word-spacing:-12.608000pt;}
.ws10{word-spacing:-12.603733pt;}
.ws5f{word-spacing:-12.596800pt;}
.ws5e{word-spacing:-12.395200pt;}
.ws63{word-spacing:-12.155200pt;}
.ws60{word-spacing:-11.772000pt;}
.ws7f{word-spacing:-11.757867pt;}
.ws5d{word-spacing:-11.753867pt;}
.wsc2{word-spacing:-11.008000pt;}
.ws69{word-spacing:-10.489600pt;}
.wsad{word-spacing:-9.848000pt;}
.ws61{word-spacing:-9.395200pt;}
.ws1f{word-spacing:-8.566400pt;}
.wsc6{word-spacing:-8.131733pt;}
.wsd{word-spacing:-8.125600pt;}
.ws77{word-spacing:-7.669333pt;}
.ws4e{word-spacing:-7.660800pt;}
.wsa6{word-spacing:-7.482133pt;}
.wsb2{word-spacing:-7.476800pt;}
.ws9b{word-spacing:-7.286400pt;}
.ws41{word-spacing:-5.552000pt;}
.wsb9{word-spacing:-4.470400pt;}
.ws9a{word-spacing:-4.290133pt;}
.wsc7{word-spacing:-3.653333pt;}
.ws4c{word-spacing:-3.638933pt;}
.ws88{word-spacing:-3.428000pt;}
.ws39{word-spacing:-1.261600pt;}
.ws68{word-spacing:-1.080533pt;}
.ws3a{word-spacing:-0.889600pt;}
.ws34{word-spacing:0.000000pt;}
.ws36{word-spacing:0.009067pt;}
.ws3c{word-spacing:0.455200pt;}
.ws3d{word-spacing:0.656000pt;}
.ws37{word-spacing:0.857333pt;}
.ws6f{word-spacing:1.036000pt;}
.ws86{word-spacing:1.680800pt;}
.wsb5{word-spacing:2.565333pt;}
.ws2c{word-spacing:3.037067pt;}
.ws4f{word-spacing:3.396267pt;}
.ws2d{word-spacing:3.578667pt;}
.ws50{word-spacing:3.852800pt;}
.ws2f{word-spacing:6.848000pt;}
.ws30{word-spacing:7.043200pt;}
.wsca{word-spacing:7.241600pt;}
.wsa7{word-spacing:7.697600pt;}
.ws6a{word-spacing:9.153067pt;}
.ws78{word-spacing:11.090133pt;}
.ws45{word-spacing:11.091200pt;}
.ws80{word-spacing:12.360000pt;}
.wsb6{word-spacing:18.128533pt;}
.wsbc{word-spacing:18.568000pt;}
.ws29{word-spacing:38.152000pt;}
.ws84{word-spacing:83.845600pt;}
.ws89{word-spacing:85.322400pt;}
.ws44{word-spacing:90.623467pt;}
.ws48{word-spacing:120.535733pt;}
.ws43{word-spacing:123.100533pt;}
.ws8a{word-spacing:129.676800pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._10{width:17.711200pt;}
._e{width:19.638400pt;}
._6{width:20.730667pt;}
._1e{width:21.862400pt;}
._9{width:23.288000pt;}
._11{width:24.576000pt;}
._c{width:25.596800pt;}
._b{width:27.297600pt;}
._a{width:28.600533pt;}
._13{width:29.826133pt;}
._d{width:31.040000pt;}
._1{width:32.000000pt;}
._22{width:32.899200pt;}
._8{width:33.971200pt;}
._24{width:34.962133pt;}
._1a{width:36.093867pt;}
._19{width:36.988800pt;}
._7{width:38.208000pt;}
._f{width:39.990400pt;}
._1b{width:41.618133pt;}
._5{width:42.685600pt;}
._21{width:44.155733pt;}
._17{width:45.232000pt;}
._26{width:46.384533pt;}
._18{width:47.409600pt;}
._16{width:49.536000pt;}
._1d{width:52.020000pt;}
._14{width:54.239733pt;}
._15{width:57.780267pt;}
._23{width:58.677867pt;}
._1c{width:60.587733pt;}
._1f{width:62.528000pt;}
._27{width:65.280000pt;}
._25{width:68.900267pt;}
._12{width:89.200000pt;}
._20{width:136.693600pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:3.360000pt;}
.y7{bottom:3.974667pt;}
.y9f{bottom:4.280000pt;}
.y39{bottom:4.346667pt;}
.y92{bottom:4.374667pt;}
.y96{bottom:4.441333pt;}
.y7e{bottom:4.454667pt;}
.y3d{bottom:4.506667pt;}
.y85{bottom:4.521333pt;}
.y42{bottom:4.574667pt;}
.y3b{bottom:13.626667pt;}
.y40{bottom:13.693333pt;}
.y81{bottom:13.733333pt;}
.y9e{bottom:22.680000pt;}
.y3c{bottom:22.746667pt;}
.y41{bottom:22.813333pt;}
.y80{bottom:22.854667pt;}
.y84{bottom:22.921333pt;}
.y9d{bottom:41.080000pt;}
.y9c{bottom:59.321333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y30{bottom:88.866667pt;}
.y98{bottom:96.866667pt;}
.y2f{bottom:107.266667pt;}
.y88{bottom:110.788000pt;}
.y97{bottom:115.266667pt;}
.y5d{bottom:125.666667pt;}
.y2e{bottom:126.788000pt;}
.y5c{bottom:144.066667pt;}
.y2d{bottom:145.188000pt;}
.y95{bottom:150.666667pt;}
.y5b{bottom:162.466667pt;}
.yb7{bottom:162.946667pt;}
.y2c{bottom:164.708000pt;}
.y87{bottom:166.146667pt;}
.y94{bottom:173.133333pt;}
.y5a{bottom:180.866667pt;}
.yb6{bottom:181.346667pt;}
.y2b{bottom:183.108000pt;}
.y86{bottom:184.546667pt;}
.y93{bottom:195.533333pt;}
.y59{bottom:199.266667pt;}
.yb5{bottom:199.746667pt;}
.y2a{bottom:201.508000pt;}
.y58{bottom:217.666667pt;}
.y91{bottom:217.933333pt;}
.yb4{bottom:218.146667pt;}
.y83{bottom:219.866667pt;}
.y29{bottom:219.908000pt;}
.y57{bottom:236.066667pt;}
.yb3{bottom:236.546667pt;}
.y28{bottom:238.308000pt;}
.y56{bottom:254.466667pt;}
.yb2{bottom:254.946667pt;}
.y27{bottom:256.706667pt;}
.y82{bottom:260.733333pt;}
.y90{bottom:262.466667pt;}
.y55{bottom:272.866667pt;}
.yb1{bottom:273.346667pt;}
.y26{bottom:275.108000pt;}
.y54{bottom:291.266667pt;}
.yb0{bottom:291.746667pt;}
.y25{bottom:293.508000pt;}
.y8f{bottom:299.426667pt;}
.y7f{bottom:301.533333pt;}
.y53{bottom:309.666667pt;}
.yaf{bottom:310.146667pt;}
.y24{bottom:311.908000pt;}
.y8e{bottom:317.826667pt;}
.y52{bottom:328.066667pt;}
.yae{bottom:328.546667pt;}
.y23{bottom:330.308000pt;}
.y8d{bottom:336.226667pt;}
.y7d{bottom:342.333333pt;}
.y51{bottom:346.466667pt;}
.yad{bottom:346.946667pt;}
.y22{bottom:348.706667pt;}
.y8c{bottom:354.626667pt;}
.y50{bottom:364.866667pt;}
.yac{bottom:365.346667pt;}
.y21{bottom:367.108000pt;}
.y8b{bottom:373.026667pt;}
.y4f{bottom:383.266667pt;}
.yab{bottom:383.746667pt;}
.y20{bottom:385.508000pt;}
.y7c{bottom:386.466667pt;}
.y8a{bottom:391.426667pt;}
.y4e{bottom:401.666667pt;}
.y1f{bottom:403.908000pt;}
.y7b{bottom:404.866667pt;}
.y4d{bottom:420.066667pt;}
.y1e{bottom:422.308000pt;}
.y7a{bottom:423.266667pt;}
.y4c{bottom:438.466667pt;}
.yaa{bottom:439.266667pt;}
.y1d{bottom:440.708000pt;}
.y79{bottom:441.666667pt;}
.y89{bottom:446.946667pt;}
.y4b{bottom:456.866667pt;}
.y1c{bottom:459.108000pt;}
.y78{bottom:460.066667pt;}
.y4a{bottom:475.266667pt;}
.ya9{bottom:476.226667pt;}
.y1b{bottom:477.506667pt;}
.y77{bottom:478.466667pt;}
.y49{bottom:493.666667pt;}
.ya8{bottom:494.626667pt;}
.y1a{bottom:495.908000pt;}
.y76{bottom:496.866667pt;}
.y48{bottom:512.066667pt;}
.ya7{bottom:513.026667pt;}
.y19{bottom:514.308000pt;}
.y75{bottom:515.266667pt;}
.y47{bottom:530.466667pt;}
.ya6{bottom:531.426667pt;}
.y18{bottom:532.706667pt;}
.y74{bottom:533.666667pt;}
.y46{bottom:548.866667pt;}
.ya5{bottom:549.826667pt;}
.y17{bottom:551.108000pt;}
.y73{bottom:552.066667pt;}
.y45{bottom:567.266667pt;}
.y16{bottom:569.506667pt;}
.y72{bottom:570.466667pt;}
.y44{bottom:585.666667pt;}
.ya4{bottom:586.946667pt;}
.y15{bottom:587.908000pt;}
.y71{bottom:588.866667pt;}
.y43{bottom:604.066667pt;}
.ya3{bottom:605.346667pt;}
.y14{bottom:606.308000pt;}
.y70{bottom:607.266667pt;}
.ya2{bottom:623.746667pt;}
.y13{bottom:624.706667pt;}
.y6f{bottom:625.666667pt;}
.y3f{bottom:639.333333pt;}
.ya1{bottom:642.146667pt;}
.y12{bottom:643.108000pt;}
.y6e{bottom:644.066667pt;}
.ya0{bottom:660.546667pt;}
.y6d{bottom:662.466667pt;}
.y11{bottom:679.906667pt;}
.y3e{bottom:680.200000pt;}
.y6c{bottom:680.866667pt;}
.y9b{bottom:693.866667pt;}
.y10{bottom:698.308000pt;}
.y6b{bottom:699.266667pt;}
.y6a{bottom:717.666667pt;}
.y3a{bottom:721.000000pt;}
.yf{bottom:735.266667pt;}
.y69{bottom:736.066667pt;}
.ye{bottom:753.666667pt;}
.y68{bottom:754.466667pt;}
.y38{bottom:761.800000pt;}
.y99{bottom:768.866667pt;}
.yd{bottom:772.066667pt;}
.y67{bottom:772.866667pt;}
.yc{bottom:790.466667pt;}
.y66{bottom:791.266667pt;}
.y37{bottom:805.988000pt;}
.yb{bottom:808.866667pt;}
.y65{bottom:809.666667pt;}
.y64{bottom:828.066667pt;}
.y63{bottom:846.466667pt;}
.y36{bottom:861.506667pt;}
.y62{bottom:864.866667pt;}
.y35{bottom:879.906667pt;}
.ya{bottom:883.106667pt;}
.y61{bottom:883.266667pt;}
.y34{bottom:899.426667pt;}
.y60{bottom:901.666667pt;}
.y33{bottom:917.826667pt;}
.y9{bottom:920.066667pt;}
.y32{bottom:937.346667pt;}
.y5f{bottom:938.466667pt;}
.y31{bottom:955.746667pt;}
.y5e{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.ha{height:19.000000pt;}
.h6{height:20.333333pt;}
.h9{height:20.400000pt;}
.h7{height:38.733333pt;}
.h8{height:38.800000pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.hb{height:74.933333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w9{width:72.333333pt;}
.wa{width:152.600000pt;}
.w6{width:154.533333pt;}
.w5{width:196.266667pt;}
.w8{width:206.866667pt;}
.w3{width:211.466667pt;}
.w4{width:227.066667pt;}
.w7{width:260.466667pt;}
.wb{width:299.333333pt;}
.wd{width:319.066667pt;}
.wc{width:319.133333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:1.012000pt;}
.x13{left:7.240000pt;}
.x12{left:106.200000pt;}
.xc{left:112.400000pt;}
.x1{left:113.440000pt;}
.x8{left:121.866667pt;}
.x4{left:128.320000pt;}
.xf{left:131.333333pt;}
.x15{left:141.760000pt;}
.x7{left:149.440000pt;}
.x10{left:205.600000pt;}
.xd{left:268.866667pt;}
.xa{left:335.266667pt;}
.x11{left:360.133333pt;}
.x6{left:372.160000pt;}
.x3{left:417.800000pt;}
.x14{left:425.266667pt;}
.xe{left:531.266667pt;}
.xb{left:564.266667pt;}
.x5{left:611.200000pt;}
.x2{left:649.920000pt;}
}




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