
    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_e82288c0931ca883e8a56055.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_3283e0f8b629f0974976c02d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d20cd39d98f37249967a1014.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2744018ec7c06c9845640005.woff')format("woff");}.ff4{font-family:ff4;line-height:1.096680;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_152a141857e5a85853a423a3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.219727;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_88bac9e6f205173eda377e9f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.485200px;}
.ls1c{letter-spacing:-7.728000px;}
.ls25{letter-spacing:-7.659000px;}
.ls16{letter-spacing:-6.624000px;}
.ls1b{letter-spacing:-2.691000px;}
.ls1d{letter-spacing:-2.622000px;}
.ls15{letter-spacing:-2.553000px;}
.ls21{letter-spacing:-2.208000px;}
.ls13{letter-spacing:-2.109000px;}
.ls1e{letter-spacing:-1.932000px;}
.ls8{letter-spacing:-1.836000px;}
.ls17{letter-spacing:-1.587000px;}
.ls22{letter-spacing:-1.518000px;}
.ls7{letter-spacing:-1.380000px;}
.lse{letter-spacing:-1.215000px;}
.ls19{letter-spacing:-1.134000px;}
.ls27{letter-spacing:-0.972000px;}
.ls10{letter-spacing:-0.855000px;}
.ls1f{letter-spacing:-0.627000px;}
.ls26{letter-spacing:-0.570000px;}
.ls23{letter-spacing:-0.345000px;}
.ls11{letter-spacing:-0.324000px;}
.ls3{letter-spacing:-0.315000px;}
.lsc{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.171000px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.013800px;}
.ls12{letter-spacing:0.015000px;}
.ls9{letter-spacing:1.092000px;}
.ls6{letter-spacing:1.260000px;}
.ls18{letter-spacing:1.482000px;}
.lsf{letter-spacing:2.400000px;}
.lsb{letter-spacing:4.200000px;}
.ls1a{letter-spacing:4.950000px;}
.lsd{letter-spacing:5.760000px;}
.lsa{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls0{letter-spacing:6.300000px;}
.ls14{letter-spacing:6.750000px;}
.ls28{letter-spacing:6.867000px;}
.ls1{letter-spacing:7.500000px;}
.ls4{letter-spacing:8.400000px;}
.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;}
}
.ws0{word-spacing:-28.575000px;}
.ws2{word-spacing:-28.512000px;}
.ws16{word-spacing:-27.825000px;}
.ws1d{word-spacing:-26.025000px;}
.ws2c{word-spacing:-24.570000px;}
.ws30{word-spacing:-22.860000px;}
.ws3{word-spacing:-22.740000px;}
.wsd{word-spacing:-22.620000px;}
.ws2b{word-spacing:-21.789000px;}
.wse{word-spacing:-21.546000px;}
.ws1a{word-spacing:-19.389000px;}
.ws1{word-spacing:-18.102000px;}
.ws2d{word-spacing:-17.703000px;}
.ws29{word-spacing:-17.056800px;}
.wsf{word-spacing:-17.043000px;}
.ws4{word-spacing:-16.860000px;}
.ws27{word-spacing:-16.698000px;}
.ws2f{word-spacing:-15.561000px;}
.ws26{word-spacing:-15.525000px;}
.ws19{word-spacing:-15.456000px;}
.ws21{word-spacing:-15.111000px;}
.ws24{word-spacing:-14.835000px;}
.ws31{word-spacing:-14.820000px;}
.ws17{word-spacing:-14.490000px;}
.ws20{word-spacing:-14.421000px;}
.ws1e{word-spacing:-14.352000px;}
.ws11{word-spacing:-11.303787px;}
.ws18{word-spacing:-10.419000px;}
.ws28{word-spacing:-9.384000px;}
.ws1f{word-spacing:-9.315000px;}
.ws7{word-spacing:-8.400000px;}
.ws2e{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.wsc{word-spacing:-4.200000px;}
.ws12{word-spacing:-2.400000px;}
.ws1b{word-spacing:-1.482000px;}
.ws9{word-spacing:-1.260000px;}
.wsb{word-spacing:-1.092000px;}
.ws8{word-spacing:0.000000px;}
.ws25{word-spacing:0.171000px;}
.ws10{word-spacing:0.180000px;}
.ws6{word-spacing:0.315000px;}
.ws14{word-spacing:0.324000px;}
.ws2a{word-spacing:0.570000px;}
.ws23{word-spacing:0.627000px;}
.ws13{word-spacing:0.855000px;}
.ws1c{word-spacing:1.134000px;}
.wsa{word-spacing:1.380000px;}
.ws15{word-spacing:2.109000px;}
.ws22{word-spacing:2.622000px;}
._18{margin-left:-11.371200px;}
._19{margin-left:-10.294800px;}
._16{margin-left:-8.395200px;}
._b{margin-left:-6.962100px;}
._7{margin-left:-5.664900px;}
._1b{margin-left:-4.629300px;}
._6{margin-left:-3.383100px;}
._9{margin-left:-2.309100px;}
._5{margin-left:-1.306200px;}
._0{width:1.417500px;}
._4{width:2.524500px;}
._a{width:3.843600px;}
._2{width:5.595000px;}
._3{width:6.910500px;}
._8{width:8.680500px;}
._12{width:10.062000px;}
._13{width:11.254200px;}
._e{width:12.591000px;}
._c{width:14.094000px;}
._14{width:15.839400px;}
._1d{width:17.128500px;}
._11{width:18.163500px;}
._23{width:20.202300px;}
._1e{width:21.416100px;}
._20{width:22.425000px;}
._17{width:23.523600px;}
._28{width:24.629100px;}
._2a{width:25.674900px;}
._29{width:26.904600px;}
._26{width:29.575500px;}
._1f{width:32.974200px;}
._27{width:34.187100px;}
._21{width:35.791500px;}
._15{width:85.554000px;}
._d{width:260.610000px;}
._1{width:447.389700px;}
._1a{width:448.807200px;}
._25{width:452.553000px;}
._f{width:578.400000px;}
._22{width:955.276200px;}
._10{width:958.396200px;}
._1c{width:962.446200px;}
._24{width:964.426200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y10b{bottom:106.045800px;}
.y154{bottom:106.107300px;}
.y94{bottom:106.165350px;}
.y92{bottom:106.207500px;}
.y131{bottom:106.268850px;}
.y46{bottom:106.274700px;}
.y6e{bottom:106.292400px;}
.y20{bottom:106.295700px;}
.y174{bottom:106.309950px;}
.ye7{bottom:106.338600px;}
.yc6{bottom:106.451700px;}
.y192{bottom:111.892800px;}
.ya3{bottom:118.478100px;}
.y10a{bottom:126.418050px;}
.y91{bottom:126.476250px;}
.y153{bottom:126.479550px;}
.y45{bottom:126.577950px;}
.y93{bottom:126.589350px;}
.y6d{bottom:126.716400px;}
.y173{bottom:127.084200px;}
.y130{bottom:127.227600px;}
.ye6{bottom:127.280100px;}
.yc5{bottom:127.393200px;}
.y1f{bottom:127.910700px;}
.y191{bottom:132.142800px;}
.ya2{bottom:138.729600px;}
.y90{bottom:146.745000px;}
.y109{bottom:146.790300px;}
.y152{bottom:146.851800px;}
.y44{bottom:146.881200px;}
.y6c{bottom:147.013350px;}
.y12f{bottom:148.186350px;}
.ye5{bottom:148.221600px;}
.yc4{bottom:148.334700px;}
.y1e{bottom:149.475450px;}
.y190{bottom:152.392800px;}
.y172{bottom:156.363450px;}
.ya1{bottom:158.981100px;}
.y8f{bottom:167.013750px;}
.y108{bottom:167.162550px;}
.y43{bottom:167.184450px;}
.y151{bottom:167.224050px;}
.y6b{bottom:167.437350px;}
.y12e{bottom:169.145100px;}
.ye4{bottom:169.163100px;}
.yc3{bottom:169.276200px;}
.y1d{bottom:169.590450px;}
.y18f{bottom:172.642800px;}
.y171{bottom:177.137700px;}
.ya0{bottom:179.232600px;}
.y8e{bottom:187.282500px;}
.y42{bottom:187.487700px;}
.y107{bottom:187.534800px;}
.y150{bottom:187.596300px;}
.y6a{bottom:187.861350px;}
.y1c{bottom:189.705450px;}
.y12d{bottom:190.103850px;}
.ye3{bottom:190.104600px;}
.yc2{bottom:190.217700px;}
.y18e{bottom:192.892800px;}
.y170{bottom:197.911950px;}
.y9f{bottom:199.484100px;}
.y8d{bottom:207.551250px;}
.y41{bottom:207.790950px;}
.y106{bottom:207.907050px;}
.y14f{bottom:207.968550px;}
.y69{bottom:208.285350px;}
.y1b{bottom:209.820450px;}
.ye2{bottom:211.046100px;}
.y12c{bottom:211.062600px;}
.yc1{bottom:211.159200px;}
.y18d{bottom:225.892800px;}
.y16f{bottom:227.191200px;}
.y8c{bottom:227.820000px;}
.y40{bottom:228.094200px;}
.y105{bottom:228.279300px;}
.y14e{bottom:228.340800px;}
.y68{bottom:228.709350px;}
.y1a{bottom:229.935450px;}
.ye1{bottom:231.987600px;}
.y12b{bottom:232.021350px;}
.yc0{bottom:232.100700px;}
.y9e{bottom:240.993900px;}
.y16e{bottom:247.965450px;}
.y8b{bottom:248.088750px;}
.y3f{bottom:248.397450px;}
.y104{bottom:248.651550px;}
.y14d{bottom:248.713050px;}
.y67{bottom:249.133350px;}
.y19{bottom:250.050450px;}
.ye0{bottom:252.929100px;}
.y12a{bottom:252.980100px;}
.ybf{bottom:253.042200px;}
.y18c{bottom:267.397800px;}
.y8a{bottom:268.357500px;}
.y3e{bottom:268.700700px;}
.y103{bottom:269.023800px;}
.y14c{bottom:269.085300px;}
.y66{bottom:269.557350px;}
.y18{bottom:270.165450px;}
.ydf{bottom:273.870600px;}
.y129{bottom:273.938850px;}
.ybe{bottom:273.983700px;}
.y16d{bottom:277.244700px;}
.y9d{bottom:286.261350px;}
.y18b{bottom:286.897800px;}
.y89{bottom:288.626250px;}
.y3d{bottom:289.003950px;}
.y102{bottom:289.396050px;}
.y14b{bottom:289.457550px;}
.y65{bottom:289.981350px;}
.y17{bottom:290.280450px;}
.y128{bottom:294.897600px;}
.ybd{bottom:294.925200px;}
.y16c{bottom:298.018950px;}
.y18a{bottom:306.397800px;}
.y88{bottom:308.895000px;}
.y3c{bottom:309.307200px;}
.y101{bottom:309.768300px;}
.y14a{bottom:309.829800px;}
.y9c{bottom:310.257600px;}
.y16{bottom:310.395450px;}
.y64{bottom:310.405350px;}
.y127{bottom:315.856350px;}
.ybc{bottom:315.866700px;}
.yde{bottom:316.076850px;}
.y16b{bottom:318.793200px;}
.y189{bottom:325.897800px;}
.y87{bottom:329.163750px;}
.y3b{bottom:329.610450px;}
.y100{bottom:330.140550px;}
.y149{bottom:330.202050px;}
.y15{bottom:330.510450px;}
.y63{bottom:330.829350px;}
.y9b{bottom:334.253850px;}
.ybb{bottom:336.808200px;}
.y126{bottom:336.815100px;}
.y188{bottom:345.397800px;}
.y16a{bottom:348.072450px;}
.y3a{bottom:349.913700px;}
.yff{bottom:350.512800px;}
.y148{bottom:350.574300px;}
.y14{bottom:350.625450px;}
.y62{bottom:351.253350px;}
.yba{bottom:357.749700px;}
.y125{bottom:357.773850px;}
.y187{bottom:364.897800px;}
.y169{bottom:368.846700px;}
.y39{bottom:370.216950px;}
.y86{bottom:370.677900px;}
.y13{bottom:370.740450px;}
.yfe{bottom:370.885050px;}
.y147{bottom:370.946550px;}
.y61{bottom:371.677350px;}
.yb9{bottom:378.691200px;}
.y124{bottom:378.732600px;}
.ydd{bottom:379.163850px;}
.y186{bottom:384.397800px;}
.y38{bottom:390.520200px;}
.y12{bottom:390.855450px;}
.yfd{bottom:391.257300px;}
.y146{bottom:391.318800px;}
.y60{bottom:392.101350px;}
.y85{bottom:394.694400px;}
.y168{bottom:398.125950px;}
.yb8{bottom:399.632700px;}
.y123{bottom:399.691350px;}
.ydc{bottom:400.105350px;}
.y185{bottom:403.897800px;}
.y37{bottom:410.823450px;}
.y11{bottom:410.970450px;}
.yfc{bottom:411.629550px;}
.y145{bottom:411.691050px;}
.y5f{bottom:412.525350px;}
.y167{bottom:418.900200px;}
.yb7{bottom:420.574200px;}
.y122{bottom:420.650100px;}
.ydb{bottom:421.046850px;}
.y10{bottom:431.085450px;}
.y36{bottom:431.126700px;}
.yfb{bottom:432.001800px;}
.y144{bottom:432.063300px;}
.y5e{bottom:432.949350px;}
.y184{bottom:436.147800px;}
.y9a{bottom:437.021550px;}
.y166{bottom:439.674450px;}
.yb6{bottom:441.515700px;}
.y121{bottom:441.608850px;}
.yda{bottom:441.988350px;}
.y35{bottom:451.429950px;}
.yfa{bottom:452.374050px;}
.y143{bottom:452.435550px;}
.y5d{bottom:453.373350px;}
.y84{bottom:456.788850px;}
.yb5{bottom:462.457200px;}
.y120{bottom:462.567600px;}
.yd9{bottom:462.929850px;}
.yf{bottom:463.950450px;}
.y165{bottom:468.953700px;}
.yf9{bottom:472.746300px;}
.y142{bottom:472.807800px;}
.y5c{bottom:473.797350px;}
.y83{bottom:477.057600px;}
.yb4{bottom:483.398700px;}
.y11f{bottom:483.526350px;}
.yd8{bottom:483.871350px;}
.y164{bottom:489.727950px;}
.y34{bottom:492.991650px;}
.yf8{bottom:493.118550px;}
.y141{bottom:493.180050px;}
.y183{bottom:493.909500px;}
.y5b{bottom:494.221350px;}
.y82{bottom:497.326350px;}
.yb3{bottom:504.340200px;}
.y11e{bottom:504.485100px;}
.yd7{bottom:504.812850px;}
.yf7{bottom:513.490800px;}
.y140{bottom:513.552300px;}
.y5a{bottom:514.645350px;}
.y81{bottom:517.595100px;}
.y163{bottom:519.007200px;}
.y182{bottom:520.915500px;}
.ye{bottom:522.326100px;}
.yb2{bottom:525.281700px;}
.y11d{bottom:525.443850px;}
.yd6{bottom:525.754350px;}
.yf6{bottom:533.863050px;}
.y13f{bottom:533.924550px;}
.y59{bottom:535.069350px;}
.y80{bottom:537.863850px;}
.yb1{bottom:546.223200px;}
.y11c{bottom:546.402600px;}
.yd5{bottom:546.695850px;}
.yd{bottom:549.941100px;}
.yf5{bottom:554.235300px;}
.y13e{bottom:554.296800px;}
.y58{bottom:555.493350px;}
.y7f{bottom:558.132600px;}
.yb0{bottom:567.164700px;}
.y11b{bottom:567.361350px;}
.yd4{bottom:567.637350px;}
.yf4{bottom:574.607550px;}
.y13d{bottom:574.669050px;}
.y33{bottom:575.619750px;}
.y57{bottom:575.917350px;}
.y7e{bottom:578.401350px;}
.yaf{bottom:588.106200px;}
.y11a{bottom:588.320100px;}
.yd3{bottom:588.578850px;}
.y181{bottom:589.360350px;}
.yf3{bottom:594.979800px;}
.y13c{bottom:595.041300px;}
.y56{bottom:596.341350px;}
.y32{bottom:596.664750px;}
.y7d{bottom:598.670100px;}
.yc{bottom:598.837800px;}
.yae{bottom:609.047700px;}
.y119{bottom:609.278850px;}
.yd2{bottom:609.520350px;}
.y180{bottom:609.614850px;}
.y162{bottom:611.935350px;}
.yf2{bottom:615.352050px;}
.y13b{bottom:615.413550px;}
.y55{bottom:616.765350px;}
.y31{bottom:617.802750px;}
.y7c{bottom:618.938850px;}
.yad{bottom:629.989200px;}
.y118{bottom:630.237600px;}
.yd1{bottom:630.461850px;}
.yb{bottom:630.940800px;}
.y161{bottom:632.704350px;}
.yf1{bottom:635.724300px;}
.y54{bottom:637.189350px;}
.y30{bottom:637.347750px;}
.y17f{bottom:638.374350px;}
.y7b{bottom:639.207600px;}
.yac{bottom:650.930700px;}
.y117{bottom:651.196350px;}
.yd0{bottom:651.403350px;}
.y160{bottom:653.473350px;}
.yf0{bottom:656.096550px;}
.y2f{bottom:656.892750px;}
.y13a{bottom:657.037950px;}
.y53{bottom:657.613350px;}
.y17e{bottom:658.628850px;}
.y7a{bottom:659.476350px;}
.ya{bottom:663.043800px;}
.yab{bottom:671.872200px;}
.y116{bottom:672.155100px;}
.ycf{bottom:672.344850px;}
.y15f{bottom:674.242350px;}
.y2e{bottom:676.437750px;}
.yef{bottom:676.468800px;}
.y52{bottom:678.037350px;}
.y79{bottom:679.745100px;}
.y17d{bottom:687.388350px;}
.yaa{bottom:692.813700px;}
.y115{bottom:693.113850px;}
.yce{bottom:693.286350px;}
.y15e{bottom:695.011350px;}
.y9{bottom:695.146800px;}
.y2d{bottom:695.982750px;}
.yee{bottom:696.841050px;}
.y51{bottom:698.461350px;}
.y78{bottom:700.013850px;}
.ya9{bottom:713.755200px;}
.y114{bottom:714.072600px;}
.ycd{bottom:714.227850px;}
.y2c{bottom:715.527750px;}
.y15d{bottom:715.780350px;}
.y17c{bottom:716.147850px;}
.yed{bottom:717.213300px;}
.y50{bottom:718.885350px;}
.y139{bottom:719.351100px;}
.y77{bottom:720.282600px;}
.ya8{bottom:734.696700px;}
.y113{bottom:735.031350px;}
.y2b{bottom:735.072750px;}
.ycc{bottom:735.169350px;}
.y17b{bottom:736.402350px;}
.y15c{bottom:736.549350px;}
.yec{bottom:737.585550px;}
.y4f{bottom:739.309350px;}
.y138{bottom:739.723350px;}
.y76{bottom:740.551350px;}
.y2a{bottom:754.617750px;}
.ya7{bottom:755.638200px;}
.y112{bottom:755.990100px;}
.ycb{bottom:756.110850px;}
.y8{bottom:757.002450px;}
.y15b{bottom:757.318350px;}
.yeb{bottom:757.957800px;}
.y4e{bottom:759.733350px;}
.y137{bottom:760.095600px;}
.y75{bottom:760.820100px;}
.y17a{bottom:765.161850px;}
.y29{bottom:774.162750px;}
.y111{bottom:776.948850px;}
.yca{bottom:777.052350px;}
.y15a{bottom:778.087350px;}
.yea{bottom:778.330050px;}
.y4d{bottom:780.157350px;}
.y136{bottom:780.467850px;}
.y74{bottom:781.088850px;}
.y179{bottom:785.416350px;}
.y7{bottom:787.122450px;}
.y28{bottom:793.707750px;}
.ya6{bottom:797.844300px;}
.y110{bottom:797.907600px;}
.yc9{bottom:797.993850px;}
.y159{bottom:798.856350px;}
.y4c{bottom:800.581350px;}
.y135{bottom:800.840100px;}
.y73{bottom:801.357600px;}
.y99{bottom:801.443850px;}
.y6{bottom:808.737450px;}
.y27{bottom:813.252750px;}
.y178{bottom:814.175850px;}
.y10f{bottom:818.866350px;}
.yc8{bottom:818.935350px;}
.y158{bottom:819.625350px;}
.ye9{bottom:819.954600px;}
.y4b{bottom:821.005350px;}
.y134{bottom:821.212350px;}
.y72{bottom:821.626350px;}
.y98{bottom:821.695350px;}
.y26{bottom:832.797750px;}
.y177{bottom:834.430350px;}
.y5{bottom:838.857450px;}
.y10e{bottom:839.825100px;}
.yc7{bottom:839.876850px;}
.y157{bottom:840.394350px;}
.y4a{bottom:841.429350px;}
.y133{bottom:841.584600px;}
.y71{bottom:841.895100px;}
.y97{bottom:841.946850px;}
.y25{bottom:852.342750px;}
.y4{bottom:860.472450px;}
.y10d{bottom:860.783850px;}
.ya5{bottom:860.818350px;}
.y156{bottom:861.163350px;}
.y49{bottom:861.853350px;}
.y132{bottom:861.956850px;}
.y70{bottom:862.163850px;}
.y96{bottom:862.198350px;}
.y176{bottom:863.189850px;}
.y24{bottom:871.887750px;}
.y10c{bottom:881.742600px;}
.ya4{bottom:881.759850px;}
.y155{bottom:881.932350px;}
.y3{bottom:882.087450px;}
.y48{bottom:882.277350px;}
.ye8{bottom:882.329100px;}
.y6f{bottom:882.432600px;}
.y95{bottom:882.449850px;}
.y175{bottom:883.444350px;}
.y47{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:904.197750px;}
.y22{bottom:948.189000px;}
.y21{bottom:966.189000px;}
.h7{height:41.396484px;}
.hb{height:44.414062px;}
.h4{height:55.517578px;}
.hd{height:57.744141px;}
.h3{height:58.293457px;}
.he{height:60.631348px;}
.ha{height:63.845215px;}
.hc{height:64.353415px;}
.h9{height:66.405762px;}
.h2{height:69.396973px;}
.h8{height:74.948730px;}
.h6{height:77.724609px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.921100px;}
.x9{left:82.484100px;}
.x1{left:83.686650px;}
.x5{left:85.095600px;}
.x4{left:105.030600px;}
.x6{left:106.365600px;}
.xb{left:200.573250px;}
.xa{left:201.931200px;}
.x7{left:212.319150px;}
.x3{left:231.893400px;}
.x2{left:233.719200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.542400pt;}
.ls1c{letter-spacing:-6.869333pt;}
.ls25{letter-spacing:-6.808000pt;}
.ls16{letter-spacing:-5.888000pt;}
.ls1b{letter-spacing:-2.392000pt;}
.ls1d{letter-spacing:-2.330667pt;}
.ls15{letter-spacing:-2.269333pt;}
.ls21{letter-spacing:-1.962667pt;}
.ls13{letter-spacing:-1.874667pt;}
.ls1e{letter-spacing:-1.717333pt;}
.ls8{letter-spacing:-1.632000pt;}
.ls17{letter-spacing:-1.410667pt;}
.ls22{letter-spacing:-1.349333pt;}
.ls7{letter-spacing:-1.226667pt;}
.lse{letter-spacing:-1.080000pt;}
.ls19{letter-spacing:-1.008000pt;}
.ls27{letter-spacing:-0.864000pt;}
.ls10{letter-spacing:-0.760000pt;}
.ls1f{letter-spacing:-0.557333pt;}
.ls26{letter-spacing:-0.506667pt;}
.ls23{letter-spacing:-0.306667pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls3{letter-spacing:-0.280000pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.152000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.012267pt;}
.ls12{letter-spacing:0.013333pt;}
.ls9{letter-spacing:0.970667pt;}
.ls6{letter-spacing:1.120000pt;}
.ls18{letter-spacing:1.317333pt;}
.lsf{letter-spacing:2.133333pt;}
.lsb{letter-spacing:3.733333pt;}
.ls1a{letter-spacing:4.400000pt;}
.lsd{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls0{letter-spacing:5.600000pt;}
.ls14{letter-spacing:6.000000pt;}
.ls28{letter-spacing:6.104000pt;}
.ls1{letter-spacing:6.666667pt;}
.ls4{letter-spacing:7.466667pt;}
.ws0{word-spacing:-25.400000pt;}
.ws2{word-spacing:-25.344000pt;}
.ws16{word-spacing:-24.733333pt;}
.ws1d{word-spacing:-23.133333pt;}
.ws2c{word-spacing:-21.840000pt;}
.ws30{word-spacing:-20.320000pt;}
.ws3{word-spacing:-20.213333pt;}
.wsd{word-spacing:-20.106667pt;}
.ws2b{word-spacing:-19.368000pt;}
.wse{word-spacing:-19.152000pt;}
.ws1a{word-spacing:-17.234667pt;}
.ws1{word-spacing:-16.090667pt;}
.ws2d{word-spacing:-15.736000pt;}
.ws29{word-spacing:-15.161600pt;}
.wsf{word-spacing:-15.149333pt;}
.ws4{word-spacing:-14.986667pt;}
.ws27{word-spacing:-14.842667pt;}
.ws2f{word-spacing:-13.832000pt;}
.ws26{word-spacing:-13.800000pt;}
.ws19{word-spacing:-13.738667pt;}
.ws21{word-spacing:-13.432000pt;}
.ws24{word-spacing:-13.186667pt;}
.ws31{word-spacing:-13.173333pt;}
.ws17{word-spacing:-12.880000pt;}
.ws20{word-spacing:-12.818667pt;}
.ws1e{word-spacing:-12.757333pt;}
.ws11{word-spacing:-10.047811pt;}
.ws18{word-spacing:-9.261333pt;}
.ws28{word-spacing:-8.341333pt;}
.ws1f{word-spacing:-8.280000pt;}
.ws7{word-spacing:-7.466667pt;}
.ws2e{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.wsc{word-spacing:-3.733333pt;}
.ws12{word-spacing:-2.133333pt;}
.ws1b{word-spacing:-1.317333pt;}
.ws9{word-spacing:-1.120000pt;}
.wsb{word-spacing:-0.970667pt;}
.ws8{word-spacing:0.000000pt;}
.ws25{word-spacing:0.152000pt;}
.ws10{word-spacing:0.160000pt;}
.ws6{word-spacing:0.280000pt;}
.ws14{word-spacing:0.288000pt;}
.ws2a{word-spacing:0.506667pt;}
.ws23{word-spacing:0.557333pt;}
.ws13{word-spacing:0.760000pt;}
.ws1c{word-spacing:1.008000pt;}
.wsa{word-spacing:1.226667pt;}
.ws15{word-spacing:1.874667pt;}
.ws22{word-spacing:2.330667pt;}
._18{margin-left:-10.107733pt;}
._19{margin-left:-9.150933pt;}
._16{margin-left:-7.462400pt;}
._b{margin-left:-6.188533pt;}
._7{margin-left:-5.035467pt;}
._1b{margin-left:-4.114933pt;}
._6{margin-left:-3.007200pt;}
._9{margin-left:-2.052533pt;}
._5{margin-left:-1.161067pt;}
._0{width:1.260000pt;}
._4{width:2.244000pt;}
._a{width:3.416533pt;}
._2{width:4.973333pt;}
._3{width:6.142667pt;}
._8{width:7.716000pt;}
._12{width:8.944000pt;}
._13{width:10.003733pt;}
._e{width:11.192000pt;}
._c{width:12.528000pt;}
._14{width:14.079467pt;}
._1d{width:15.225333pt;}
._11{width:16.145333pt;}
._23{width:17.957600pt;}
._1e{width:19.036533pt;}
._20{width:19.933333pt;}
._17{width:20.909867pt;}
._28{width:21.892533pt;}
._2a{width:22.822133pt;}
._29{width:23.915200pt;}
._26{width:26.289333pt;}
._1f{width:29.310400pt;}
._27{width:30.388533pt;}
._21{width:31.814667pt;}
._15{width:76.048000pt;}
._d{width:231.653333pt;}
._1{width:397.679733pt;}
._1a{width:398.939733pt;}
._25{width:402.269333pt;}
._f{width:514.133333pt;}
._22{width:849.134400pt;}
._10{width:851.907733pt;}
._1c{width:855.507733pt;}
._24{width:857.267733pt;}
.fsa{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y10b{bottom:94.262933pt;}
.y154{bottom:94.317600pt;}
.y94{bottom:94.369200pt;}
.y92{bottom:94.406667pt;}
.y131{bottom:94.461200pt;}
.y46{bottom:94.466400pt;}
.y6e{bottom:94.482133pt;}
.y20{bottom:94.485067pt;}
.y174{bottom:94.497733pt;}
.ye7{bottom:94.523200pt;}
.yc6{bottom:94.623733pt;}
.y192{bottom:99.460267pt;}
.ya3{bottom:105.313867pt;}
.y10a{bottom:112.371600pt;}
.y91{bottom:112.423333pt;}
.y153{bottom:112.426267pt;}
.y45{bottom:112.513733pt;}
.y93{bottom:112.523867pt;}
.y6d{bottom:112.636800pt;}
.y173{bottom:112.963733pt;}
.y130{bottom:113.091200pt;}
.ye6{bottom:113.137867pt;}
.yc5{bottom:113.238400pt;}
.y1f{bottom:113.698400pt;}
.y191{bottom:117.460267pt;}
.ya2{bottom:123.315200pt;}
.y90{bottom:130.440000pt;}
.y109{bottom:130.480267pt;}
.y152{bottom:130.534933pt;}
.y44{bottom:130.561067pt;}
.y6c{bottom:130.678533pt;}
.y12f{bottom:131.721200pt;}
.ye5{bottom:131.752533pt;}
.yc4{bottom:131.853067pt;}
.y1e{bottom:132.867067pt;}
.y190{bottom:135.460267pt;}
.y172{bottom:138.989733pt;}
.ya1{bottom:141.316533pt;}
.y8f{bottom:148.456667pt;}
.y108{bottom:148.588933pt;}
.y43{bottom:148.608400pt;}
.y151{bottom:148.643600pt;}
.y6b{bottom:148.833200pt;}
.y12e{bottom:150.351200pt;}
.ye4{bottom:150.367200pt;}
.yc3{bottom:150.467733pt;}
.y1d{bottom:150.747067pt;}
.y18f{bottom:153.460267pt;}
.y171{bottom:157.455733pt;}
.ya0{bottom:159.317867pt;}
.y8e{bottom:166.473333pt;}
.y42{bottom:166.655733pt;}
.y107{bottom:166.697600pt;}
.y150{bottom:166.752267pt;}
.y6a{bottom:166.987867pt;}
.y1c{bottom:168.627067pt;}
.y12d{bottom:168.981200pt;}
.ye3{bottom:168.981867pt;}
.yc2{bottom:169.082400pt;}
.y18e{bottom:171.460267pt;}
.y170{bottom:175.921733pt;}
.y9f{bottom:177.319200pt;}
.y8d{bottom:184.490000pt;}
.y41{bottom:184.703067pt;}
.y106{bottom:184.806267pt;}
.y14f{bottom:184.860933pt;}
.y69{bottom:185.142533pt;}
.y1b{bottom:186.507067pt;}
.ye2{bottom:187.596533pt;}
.y12c{bottom:187.611200pt;}
.yc1{bottom:187.697067pt;}
.y18d{bottom:200.793600pt;}
.y16f{bottom:201.947733pt;}
.y8c{bottom:202.506667pt;}
.y40{bottom:202.750400pt;}
.y105{bottom:202.914933pt;}
.y14e{bottom:202.969600pt;}
.y68{bottom:203.297200pt;}
.y1a{bottom:204.387067pt;}
.ye1{bottom:206.211200pt;}
.y12b{bottom:206.241200pt;}
.yc0{bottom:206.311733pt;}
.y9e{bottom:214.216800pt;}
.y16e{bottom:220.413733pt;}
.y8b{bottom:220.523333pt;}
.y3f{bottom:220.797733pt;}
.y104{bottom:221.023600pt;}
.y14d{bottom:221.078267pt;}
.y67{bottom:221.451867pt;}
.y19{bottom:222.267067pt;}
.ye0{bottom:224.825867pt;}
.y12a{bottom:224.871200pt;}
.ybf{bottom:224.926400pt;}
.y18c{bottom:237.686933pt;}
.y8a{bottom:238.540000pt;}
.y3e{bottom:238.845067pt;}
.y103{bottom:239.132267pt;}
.y14c{bottom:239.186933pt;}
.y66{bottom:239.606533pt;}
.y18{bottom:240.147067pt;}
.ydf{bottom:243.440533pt;}
.y129{bottom:243.501200pt;}
.ybe{bottom:243.541067pt;}
.y16d{bottom:246.439733pt;}
.y9d{bottom:254.454533pt;}
.y18b{bottom:255.020267pt;}
.y89{bottom:256.556667pt;}
.y3d{bottom:256.892400pt;}
.y102{bottom:257.240933pt;}
.y14b{bottom:257.295600pt;}
.y65{bottom:257.761200pt;}
.y17{bottom:258.027067pt;}
.y128{bottom:262.131200pt;}
.ybd{bottom:262.155733pt;}
.y16c{bottom:264.905733pt;}
.y18a{bottom:272.353600pt;}
.y88{bottom:274.573333pt;}
.y3c{bottom:274.939733pt;}
.y101{bottom:275.349600pt;}
.y14a{bottom:275.404267pt;}
.y9c{bottom:275.784533pt;}
.y16{bottom:275.907067pt;}
.y64{bottom:275.915867pt;}
.y127{bottom:280.761200pt;}
.ybc{bottom:280.770400pt;}
.yde{bottom:280.957200pt;}
.y16b{bottom:283.371733pt;}
.y189{bottom:289.686933pt;}
.y87{bottom:292.590000pt;}
.y3b{bottom:292.987067pt;}
.y100{bottom:293.458267pt;}
.y149{bottom:293.512933pt;}
.y15{bottom:293.787067pt;}
.y63{bottom:294.070533pt;}
.y9b{bottom:297.114533pt;}
.ybb{bottom:299.385067pt;}
.y126{bottom:299.391200pt;}
.y188{bottom:307.020267pt;}
.y16a{bottom:309.397733pt;}
.y3a{bottom:311.034400pt;}
.yff{bottom:311.566933pt;}
.y148{bottom:311.621600pt;}
.y14{bottom:311.667067pt;}
.y62{bottom:312.225200pt;}
.yba{bottom:317.999733pt;}
.y125{bottom:318.021200pt;}
.y187{bottom:324.353600pt;}
.y169{bottom:327.863733pt;}
.y39{bottom:329.081733pt;}
.y86{bottom:329.491467pt;}
.y13{bottom:329.547067pt;}
.yfe{bottom:329.675600pt;}
.y147{bottom:329.730267pt;}
.y61{bottom:330.379867pt;}
.yb9{bottom:336.614400pt;}
.y124{bottom:336.651200pt;}
.ydd{bottom:337.034533pt;}
.y186{bottom:341.686933pt;}
.y38{bottom:347.129067pt;}
.y12{bottom:347.427067pt;}
.yfd{bottom:347.784267pt;}
.y146{bottom:347.838933pt;}
.y60{bottom:348.534533pt;}
.y85{bottom:350.839467pt;}
.y168{bottom:353.889733pt;}
.yb8{bottom:355.229067pt;}
.y123{bottom:355.281200pt;}
.ydc{bottom:355.649200pt;}
.y185{bottom:359.020267pt;}
.y37{bottom:365.176400pt;}
.y11{bottom:365.307067pt;}
.yfc{bottom:365.892933pt;}
.y145{bottom:365.947600pt;}
.y5f{bottom:366.689200pt;}
.y167{bottom:372.355733pt;}
.yb7{bottom:373.843733pt;}
.y122{bottom:373.911200pt;}
.ydb{bottom:374.263867pt;}
.y10{bottom:383.187067pt;}
.y36{bottom:383.223733pt;}
.yfb{bottom:384.001600pt;}
.y144{bottom:384.056267pt;}
.y5e{bottom:384.843867pt;}
.y184{bottom:387.686933pt;}
.y9a{bottom:388.463600pt;}
.y166{bottom:390.821733pt;}
.yb6{bottom:392.458400pt;}
.y121{bottom:392.541200pt;}
.yda{bottom:392.878533pt;}
.y35{bottom:401.271067pt;}
.yfa{bottom:402.110267pt;}
.y143{bottom:402.164933pt;}
.y5d{bottom:402.998533pt;}
.y84{bottom:406.034533pt;}
.yb5{bottom:411.073067pt;}
.y120{bottom:411.171200pt;}
.yd9{bottom:411.493200pt;}
.yf{bottom:412.400400pt;}
.y165{bottom:416.847733pt;}
.yf9{bottom:420.218933pt;}
.y142{bottom:420.273600pt;}
.y5c{bottom:421.153200pt;}
.y83{bottom:424.051200pt;}
.yb4{bottom:429.687733pt;}
.y11f{bottom:429.801200pt;}
.yd8{bottom:430.107867pt;}
.y164{bottom:435.313733pt;}
.y34{bottom:438.214800pt;}
.yf8{bottom:438.327600pt;}
.y141{bottom:438.382267pt;}
.y183{bottom:439.030667pt;}
.y5b{bottom:439.307867pt;}
.y82{bottom:442.067867pt;}
.yb3{bottom:448.302400pt;}
.y11e{bottom:448.431200pt;}
.yd7{bottom:448.722533pt;}
.yf7{bottom:456.436267pt;}
.y140{bottom:456.490933pt;}
.y5a{bottom:457.462533pt;}
.y81{bottom:460.084533pt;}
.y163{bottom:461.339733pt;}
.y182{bottom:463.036000pt;}
.ye{bottom:464.289867pt;}
.yb2{bottom:466.917067pt;}
.y11d{bottom:467.061200pt;}
.yd6{bottom:467.337200pt;}
.yf6{bottom:474.544933pt;}
.y13f{bottom:474.599600pt;}
.y59{bottom:475.617200pt;}
.y80{bottom:478.101200pt;}
.yb1{bottom:485.531733pt;}
.y11c{bottom:485.691200pt;}
.yd5{bottom:485.951867pt;}
.yd{bottom:488.836533pt;}
.yf5{bottom:492.653600pt;}
.y13e{bottom:492.708267pt;}
.y58{bottom:493.771867pt;}
.y7f{bottom:496.117867pt;}
.yb0{bottom:504.146400pt;}
.y11b{bottom:504.321200pt;}
.yd4{bottom:504.566533pt;}
.yf4{bottom:510.762267pt;}
.y13d{bottom:510.816933pt;}
.y33{bottom:511.662000pt;}
.y57{bottom:511.926533pt;}
.y7e{bottom:514.134533pt;}
.yaf{bottom:522.761067pt;}
.y11a{bottom:522.951200pt;}
.yd3{bottom:523.181200pt;}
.y181{bottom:523.875867pt;}
.yf3{bottom:528.870933pt;}
.y13c{bottom:528.925600pt;}
.y56{bottom:530.081200pt;}
.y32{bottom:530.368667pt;}
.y7d{bottom:532.151200pt;}
.yc{bottom:532.300267pt;}
.yae{bottom:541.375733pt;}
.y119{bottom:541.581200pt;}
.yd2{bottom:541.795867pt;}
.y180{bottom:541.879867pt;}
.y162{bottom:543.942533pt;}
.yf2{bottom:546.979600pt;}
.y13b{bottom:547.034267pt;}
.y55{bottom:548.235867pt;}
.y31{bottom:549.158000pt;}
.y7c{bottom:550.167867pt;}
.yad{bottom:559.990400pt;}
.y118{bottom:560.211200pt;}
.yd1{bottom:560.410533pt;}
.yb{bottom:560.836267pt;}
.y161{bottom:562.403867pt;}
.yf1{bottom:565.088267pt;}
.y54{bottom:566.390533pt;}
.y30{bottom:566.531333pt;}
.y17f{bottom:567.443867pt;}
.y7b{bottom:568.184533pt;}
.yac{bottom:578.605067pt;}
.y117{bottom:578.841200pt;}
.yd0{bottom:579.025200pt;}
.y160{bottom:580.865200pt;}
.yf0{bottom:583.196933pt;}
.y2f{bottom:583.904667pt;}
.y13a{bottom:584.033733pt;}
.y53{bottom:584.545200pt;}
.y17e{bottom:585.447867pt;}
.y7a{bottom:586.201200pt;}
.ya{bottom:589.372267pt;}
.yab{bottom:597.219733pt;}
.y116{bottom:597.471200pt;}
.ycf{bottom:597.639867pt;}
.y15f{bottom:599.326533pt;}
.y2e{bottom:601.278000pt;}
.yef{bottom:601.305600pt;}
.y52{bottom:602.699867pt;}
.y79{bottom:604.217867pt;}
.y17d{bottom:611.011867pt;}
.yaa{bottom:615.834400pt;}
.y115{bottom:616.101200pt;}
.yce{bottom:616.254533pt;}
.y15e{bottom:617.787867pt;}
.y9{bottom:617.908267pt;}
.y2d{bottom:618.651333pt;}
.yee{bottom:619.414267pt;}
.y51{bottom:620.854533pt;}
.y78{bottom:622.234533pt;}
.ya9{bottom:634.449067pt;}
.y114{bottom:634.731200pt;}
.ycd{bottom:634.869200pt;}
.y2c{bottom:636.024667pt;}
.y15d{bottom:636.249200pt;}
.y17c{bottom:636.575867pt;}
.yed{bottom:637.522933pt;}
.y50{bottom:639.009200pt;}
.y139{bottom:639.423200pt;}
.y77{bottom:640.251200pt;}
.ya8{bottom:653.063733pt;}
.y113{bottom:653.361200pt;}
.y2b{bottom:653.398000pt;}
.ycc{bottom:653.483867pt;}
.y17b{bottom:654.579867pt;}
.y15c{bottom:654.710533pt;}
.yec{bottom:655.631600pt;}
.y4f{bottom:657.163867pt;}
.y138{bottom:657.531867pt;}
.y76{bottom:658.267867pt;}
.y2a{bottom:670.771333pt;}
.ya7{bottom:671.678400pt;}
.y112{bottom:671.991200pt;}
.ycb{bottom:672.098533pt;}
.y8{bottom:672.891067pt;}
.y15b{bottom:673.171867pt;}
.yeb{bottom:673.740267pt;}
.y4e{bottom:675.318533pt;}
.y137{bottom:675.640533pt;}
.y75{bottom:676.284533pt;}
.y17a{bottom:680.143867pt;}
.y29{bottom:688.144667pt;}
.y111{bottom:690.621200pt;}
.yca{bottom:690.713200pt;}
.y15a{bottom:691.633200pt;}
.yea{bottom:691.848933pt;}
.y4d{bottom:693.473200pt;}
.y136{bottom:693.749200pt;}
.y74{bottom:694.301200pt;}
.y179{bottom:698.147867pt;}
.y7{bottom:699.664400pt;}
.y28{bottom:705.518000pt;}
.ya6{bottom:709.194933pt;}
.y110{bottom:709.251200pt;}
.yc9{bottom:709.327867pt;}
.y159{bottom:710.094533pt;}
.y4c{bottom:711.627867pt;}
.y135{bottom:711.857867pt;}
.y73{bottom:712.317867pt;}
.y99{bottom:712.394533pt;}
.y6{bottom:718.877733pt;}
.y27{bottom:722.891333pt;}
.y178{bottom:723.711867pt;}
.y10f{bottom:727.881200pt;}
.yc8{bottom:727.942533pt;}
.y158{bottom:728.555867pt;}
.ye9{bottom:728.848533pt;}
.y4b{bottom:729.782533pt;}
.y134{bottom:729.966533pt;}
.y72{bottom:730.334533pt;}
.y98{bottom:730.395867pt;}
.y26{bottom:740.264667pt;}
.y177{bottom:741.715867pt;}
.y5{bottom:745.651067pt;}
.y10e{bottom:746.511200pt;}
.yc7{bottom:746.557200pt;}
.y157{bottom:747.017200pt;}
.y4a{bottom:747.937200pt;}
.y133{bottom:748.075200pt;}
.y71{bottom:748.351200pt;}
.y97{bottom:748.397200pt;}
.y25{bottom:757.638000pt;}
.y4{bottom:764.864400pt;}
.y10d{bottom:765.141200pt;}
.ya5{bottom:765.171867pt;}
.y156{bottom:765.478533pt;}
.y49{bottom:766.091867pt;}
.y132{bottom:766.183867pt;}
.y70{bottom:766.367867pt;}
.y96{bottom:766.398533pt;}
.y176{bottom:767.279867pt;}
.y24{bottom:775.011333pt;}
.y10c{bottom:783.771200pt;}
.ya4{bottom:783.786533pt;}
.y155{bottom:783.939867pt;}
.y3{bottom:784.077733pt;}
.y48{bottom:784.246533pt;}
.ye8{bottom:784.292533pt;}
.y6f{bottom:784.384533pt;}
.y95{bottom:784.399867pt;}
.y175{bottom:785.283867pt;}
.y47{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:803.731333pt;}
.y22{bottom:842.834667pt;}
.y21{bottom:858.834667pt;}
.h7{height:36.796875pt;}
.hb{height:39.479167pt;}
.h4{height:49.348958pt;}
.hd{height:51.328125pt;}
.h3{height:51.816406pt;}
.he{height:53.894531pt;}
.ha{height:56.751302pt;}
.hc{height:57.203035pt;}
.h9{height:59.027344pt;}
.h2{height:61.686198pt;}
.h8{height:66.621094pt;}
.h6{height:69.088542pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.929867pt;}
.x9{left:73.319200pt;}
.x1{left:74.388133pt;}
.x5{left:75.640533pt;}
.x4{left:93.360533pt;}
.x6{left:94.547200pt;}
.xb{left:178.287333pt;}
.xa{left:179.494400pt;}
.x7{left:188.728133pt;}
.x3{left:206.127467pt;}
.x2{left:207.750400pt;}
}




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