
    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_0f34dee43abb78b30dbcd59d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_64481fdecb64224333cb7dbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_755264cc4a24e9d1d5f92361.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108887;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_312917c0cf4ff53341382735.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_420c33ea9f6d106b03740fbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_7a0c2fa9b4ee6f43ad7233d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0f34dee43abb78b30dbcd59d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9bb6ed718ef8a23593b0c65f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_542de04b8caa23ec87695137.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6b3ced049959580931ab0f91.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cab08d402990267ec1f85560.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.857910;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.248576,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248576,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248576,0.250000,0.000000,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);}
.m3{transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-14.985000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.006000px;}
.v4{vertical-align:14.985000px;}
.v2{vertical-align:17.982000px;}
.v5{vertical-align:42.840000px;}
.ls2{letter-spacing:-8.640000px;}
.ls3{letter-spacing:-2.400000px;}
.ls5{letter-spacing:-2.100000px;}
.ls6{letter-spacing:-1.500000px;}
.ls4{letter-spacing:-0.600000px;}
.ls17{letter-spacing:-0.324000px;}
.lsa{letter-spacing:-0.298800px;}
.ls18{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.232134px;}
.lsf{letter-spacing:-0.198972px;}
.lse{letter-spacing:-0.165810px;}
.ls7{letter-spacing:-0.119520px;}
.ls10{letter-spacing:-0.099486px;}
.lsd{letter-spacing:-0.041081px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000300px;}
.ls16{letter-spacing:0.054000px;}
.ls12{letter-spacing:0.074668px;}
.ls14{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.179280px;}
.ls8{letter-spacing:0.358560px;}
.ls15{letter-spacing:0.378000px;}
.ls13{letter-spacing:8.262000px;}
.lsb{letter-spacing:122.671200px;}
.ls0{letter-spacing:699.402000px;}
.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:-23.352000px;}
.ws1e{word-spacing:-16.792560px;}
.ws20{word-spacing:-16.680000px;}
.ws5{word-spacing:-16.314480px;}
.ws11{word-spacing:-15.012000px;}
.ws1f{word-spacing:-14.688000px;}
.ws4{word-spacing:-12.510000px;}
.ws12{word-spacing:-9.243180px;}
.ws10{word-spacing:-8.751996px;}
.ws14{word-spacing:-7.395126px;}
.ws16{word-spacing:-7.328802px;}
.ws13{word-spacing:-7.295640px;}
.ws3{word-spacing:-7.293330px;}
.ws15{word-spacing:-7.262478px;}
.ws17{word-spacing:-5.400000px;}
.ws28{word-spacing:-0.972000px;}
.ws8{word-spacing:-0.956160px;}
.ws29{word-spacing:-0.702000px;}
.ws23{word-spacing:-0.648000px;}
.ws24{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.522677px;}
.ws7{word-spacing:-0.418320px;}
.ws22{word-spacing:-0.378000px;}
.ws2{word-spacing:-0.180000px;}
.ws2c{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:0.033162px;}
.ws25{word-spacing:0.054000px;}
.ws6{word-spacing:0.059760px;}
.ws18{word-spacing:0.099486px;}
.ws21{word-spacing:0.108000px;}
.ws9{word-spacing:0.119520px;}
.ws27{word-spacing:0.378000px;}
.ws26{word-spacing:0.432000px;}
.ws1d{word-spacing:0.460799px;}
.ws1b{word-spacing:0.596916px;}
.ws2b{word-spacing:0.600000px;}
.ws1a{word-spacing:0.630078px;}
.ws2a{word-spacing:1.188000px;}
.wsc{word-spacing:135.162000px;}
.wsd{word-spacing:138.294000px;}
.wse{word-spacing:145.530000px;}
.wsb{word-spacing:146.988000px;}
.wsf{word-spacing:150.120000px;}
.wsa{word-spacing:206.820000px;}
._b{margin-left:-3061.392000px;}
._7{margin-left:-10.800000px;}
._8{margin-left:-8.006400px;}
._6{margin-left:-6.386400px;}
._5{margin-left:-5.097600px;}
._a{margin-left:-3.939600px;}
._2{margin-left:-2.880000px;}
._3{margin-left:-1.440000px;}
._0{width:1.900800px;}
._9{width:3.276000px;}
._42{width:5.416200px;}
._4{width:8.654400px;}
._4a{width:17.278588px;}
._48{width:21.536989px;}
._49{width:22.826767px;}
._35{width:48.204000px;}
._2d{width:66.132000px;}
._e{width:67.716000px;}
._30{width:72.306000px;}
._2a{width:75.043404px;}
._37{width:76.356000px;}
._2f{width:79.542000px;}
._4c{width:81.486000px;}
._31{width:82.674000px;}
._32{width:83.970000px;}
._f{width:91.368000px;}
._33{width:92.988000px;}
._13{width:94.662000px;}
._36{width:97.470000px;}
._45{width:99.306000px;}
._2e{width:100.656000px;}
._44{width:106.542000px;}
._46{width:109.674000px;}
._41{width:110.970000px;}
._47{width:119.988000px;}
._c{width:124.862400px;}
._3f{width:126.306000px;}
._3a{width:127.656000px;}
._3e{width:133.542000px;}
._40{width:136.674000px;}
._14{width:144.558000px;}
._28{width:153.306000px;}
._3d{width:154.656000px;}
._23{width:160.542000px;}
._24{width:163.674000px;}
._1d{width:165.132000px;}
._25{width:168.156000px;}
._1c{width:172.368000px;}
._1e{width:175.500000px;}
._26{width:177.174000px;}
._1f{width:179.982000px;}
._22{width:181.656000px;}
._50{width:184.316400px;}
._52{width:185.922000px;}
._2c{width:189.000000px;}
._1b{width:193.482000px;}
._d{width:195.858000px;}
._2b{width:219.673008px;}
._17{width:224.964000px;}
._53{width:227.516400px;}
._16{width:228.690000px;}
._19{width:238.464000px;}
._18{width:243.540000px;}
._15{width:257.040000px;}
._54{width:261.036000px;}
._55{width:269.676000px;}
._11{width:272.821680px;}
._27{width:281.851200px;}
._4d{width:289.548000px;}
._51{width:300.132000px;}
._4e{width:318.222000px;}
._4f{width:341.874000px;}
._1a{width:359.260446px;}
._4b{width:375.368400px;}
._21{width:421.686000px;}
._10{width:435.363120px;}
._20{width:517.998204px;}
._29{width:547.668000px;}
._56{width:668.967000px;}
._12{width:701.712000px;}
._39{width:722.844000px;}
._3c{width:773.605008px;}
._43{width:837.361800px;}
._38{width:866.106000px;}
._3b{width:868.800204px;}
._34{width:952.560000px;}
._1{width:2461.434600px;}
.fc5{color:rgb(22,18,17);}
.fc4{color:transparent;}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(113,31,35);}
.fc7{color:rgb(101,98,99);}
.fc0{color:rgb(118,33,35);}
.fs8{font-size:26.235000px;}
.fs7{font-size:31.482000px;}
.fsc{font-size:33.162000px;}
.fsf{font-size:36.000000px;}
.fsb{font-size:41.080800px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs4{font-size:60.000000px;}
.fse{font-size:65.828400px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:74.668200px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:5.971200px;}
.y1{bottom:31.781100px;}
.y152{bottom:33.778800px;}
.yb8{bottom:37.622250px;}
.yb7{bottom:53.699700px;}
.yaf{bottom:63.028500px;}
.yb6{bottom:63.768750px;}
.y69{bottom:69.932550px;}
.y22{bottom:72.325350px;}
.y3d{bottom:73.465350px;}
.yb0{bottom:73.884900px;}
.y68{bottom:82.307550px;}
.y21{bottom:90.325350px;}
.y3c{bottom:91.465350px;}
.y67{bottom:98.428800px;}
.y20{bottom:108.325350px;}
.y3b{bottom:109.465350px;}
.yb1{bottom:115.629450px;}
.y66{bottom:116.047050px;}
.y1f{bottom:126.325350px;}
.y3a{bottom:127.465350px;}
.y65{bottom:132.247050px;}
.yb9{bottom:133.895850px;}
.yed{bottom:138.855150px;}
.y122{bottom:139.668300px;}
.y1e{bottom:144.325350px;}
.y39{bottom:145.465350px;}
.y64{bottom:148.447050px;}
.yec{bottom:156.855150px;}
.yb2{bottom:157.374450px;}
.y121{bottom:160.998300px;}
.y1d{bottom:162.325350px;}
.y38{bottom:163.465350px;}
.y85{bottom:168.297660px;}
.y63{bottom:169.777050px;}
.yeb{bottom:174.855150px;}
.y1c{bottom:180.325350px;}
.y37{bottom:181.465350px;}
.y120{bottom:182.328300px;}
.y62{bottom:185.977050px;}
.yea{bottom:192.855150px;}
.yb3{bottom:199.119300px;}
.y36{bottom:199.465350px;}
.y61{bottom:202.177050px;}
.y11f{bottom:203.658300px;}
.y1b{bottom:205.825350px;}
.ye9{bottom:210.855150px;}
.y35{bottom:217.465350px;}
.y60{bottom:218.377050px;}
.y11e{bottom:224.988300px;}
.ye8{bottom:228.855150px;}
.y34{bottom:235.465350px;}
.y5f{bottom:239.707050px;}
.yb4{bottom:240.863850px;}
.y11d{bottom:246.315600px;}
.ye7{bottom:246.855150px;}
.y33{bottom:253.465350px;}
.y1a{bottom:255.325350px;}
.y5e{bottom:255.907050px;}
.y11c{bottom:264.315600px;}
.ye6{bottom:264.855150px;}
.y32{bottom:271.465350px;}
.y5d{bottom:272.107050px;}
.y19{bottom:273.325350px;}
.yb5{bottom:282.608700px;}
.ye5{bottom:282.855150px;}
.y31{bottom:289.465350px;}
.y18{bottom:291.325350px;}
.y11b{bottom:292.679400px;}
.y5c{bottom:293.437050px;}
.ye4{bottom:300.855150px;}
.y30{bottom:307.465350px;}
.y17{bottom:309.325350px;}
.y11a{bottom:310.679400px;}
.y5b{bottom:314.767050px;}
.y2f{bottom:325.465350px;}
.ye3{bottom:326.349150px;}
.y16{bottom:327.325350px;}
.y119{bottom:328.679400px;}
.y5a{bottom:336.094500px;}
.y2e{bottom:343.465350px;}
.y84{bottom:344.529900px;}
.y15{bottom:345.325350px;}
.y118{bottom:346.679400px;}
.ye2{bottom:350.352150px;}
.y2d{bottom:361.465350px;}
.y14{bottom:363.325350px;}
.y59{bottom:363.421950px;}
.ye1{bottom:374.355150px;}
.yae{bottom:377.282850px;}
.y117{bottom:378.179400px;}
.y2c{bottom:379.465350px;}
.y13{bottom:381.325350px;}
.y58{bottom:381.421950px;}
.y116{bottom:396.179400px;}
.y2b{bottom:397.465350px;}
.y12{bottom:399.325350px;}
.y57{bottom:399.421950px;}
.yad{bottom:401.284350px;}
.y128{bottom:404.807250px;}
.y115{bottom:414.179400px;}
.yac{bottom:414.784350px;}
.y11{bottom:417.325350px;}
.y56{bottom:417.421950px;}
.ye0{bottom:417.855150px;}
.y127{bottom:421.007250px;}
.yab{bottom:428.284350px;}
.y2a{bottom:428.965350px;}
.y114{bottom:432.179400px;}
.ydf{bottom:434.055150px;}
.y10{bottom:435.325350px;}
.y55{bottom:435.421950px;}
.yaa{bottom:445.530600px;}
.y29{bottom:446.965350px;}
.y113{bottom:450.179400px;}
.yde{bottom:450.255150px;}
.yf{bottom:453.325350px;}
.y54{bottom:453.421950px;}
.y28{bottom:464.965350px;}
.ydd{bottom:466.455150px;}
.y112{bottom:468.179400px;}
.ya9{bottom:468.813000px;}
.ye{bottom:471.325350px;}
.y53{bottom:471.421950px;}
.ydc{bottom:482.655150px;}
.y27{bottom:482.965350px;}
.ya8{bottom:485.013000px;}
.y111{bottom:486.179400px;}
.yd{bottom:489.325350px;}
.y52{bottom:496.921950px;}
.ydb{bottom:498.855150px;}
.y26{bottom:500.965350px;}
.y110{bottom:504.179400px;}
.ya7{bottom:506.340450px;}
.yc{bottom:507.325350px;}
.y83{bottom:512.845950px;}
.yda{bottom:515.055150px;}
.y25{bottom:518.965350px;}
.y10f{bottom:522.179400px;}
.ya6{bottom:522.540450px;}
.yb{bottom:525.325350px;}
.yd9{bottom:531.255150px;}
.y82{bottom:535.045950px;}
.y24{bottom:536.965350px;}
.y10e{bottom:540.179400px;}
.ya5{bottom:543.867750px;}
.y51{bottom:546.421950px;}
.yd8{bottom:547.455150px;}
.ya{bottom:550.825350px;}
.y81{bottom:553.045950px;}
.y23{bottom:554.965350px;}
.y157{bottom:555.341400px;}
.y10d{bottom:558.179400px;}
.ya4{bottom:560.067750px;}
.yd7{bottom:563.655150px;}
.y50{bottom:564.421950px;}
.y80{bottom:571.045950px;}
.y156{bottom:573.336900px;}
.y10c{bottom:576.179400px;}
.yd6{bottom:579.855150px;}
.ya3{bottom:581.397750px;}
.y4f{bottom:582.421950px;}
.y7f{bottom:589.045950px;}
.y155{bottom:591.336900px;}
.yd5{bottom:596.055150px;}
.ya2{bottom:597.579450px;}
.y4e{bottom:600.421950px;}
.y154{bottom:602.226900px;}
.y7e{bottom:607.045950px;}
.y10b{bottom:607.679400px;}
.yd4{bottom:612.255150px;}
.y4d{bottom:618.421950px;}
.ya1{bottom:618.909450px;}
.y153{bottom:620.222400px;}
.y7d{bottom:625.045950px;}
.y10a{bottom:625.679400px;}
.yd3{bottom:628.455150px;}
.ya0{bottom:635.109450px;}
.y4c{bottom:636.421950px;}
.y7c{bottom:643.045950px;}
.y4{bottom:643.254300px;}
.y109{bottom:643.679400px;}
.yd2{bottom:644.655150px;}
.y4b{bottom:654.421950px;}
.y9f{bottom:656.439450px;}
.yd1{bottom:660.855150px;}
.y7b{bottom:661.045950px;}
.y108{bottom:661.679400px;}
.y4a{bottom:672.421950px;}
.y9e{bottom:672.639450px;}
.y13d{bottom:674.191350px;}
.y151{bottom:678.432150px;}
.y7a{bottom:679.045950px;}
.y107{bottom:679.679400px;}
.yd0{bottom:686.375400px;}
.y3{bottom:687.026250px;}
.y13c{bottom:692.191350px;}
.y9d{bottom:693.969450px;}
.y150{bottom:696.432150px;}
.ycf{bottom:700.590900px;}
.y13b{bottom:710.191350px;}
.y79{bottom:710.545950px;}
.y106{bottom:711.179400px;}
.y14f{bottom:714.432150px;}
.y9c{bottom:715.299450px;}
.yce{bottom:716.966400px;}
.y49{bottom:720.421950px;}
.y2{bottom:726.014250px;}
.yc6{bottom:728.028000px;}
.y13a{bottom:728.191350px;}
.y78{bottom:728.545950px;}
.y105{bottom:729.179400px;}
.y9b{bottom:731.499450px;}
.y14e{bottom:732.432150px;}
.ycd{bottom:733.341900px;}
.yc5{bottom:742.068000px;}
.y139{bottom:746.191350px;}
.y77{bottom:746.545950px;}
.y104{bottom:747.179400px;}
.ycc{bottom:749.906400px;}
.y14d{bottom:750.432150px;}
.y9a{bottom:752.829450px;}
.yc4{bottom:758.632500px;}
.y138{bottom:764.191350px;}
.y76{bottom:764.545950px;}
.y103{bottom:765.179400px;}
.ycb{bottom:766.281900px;}
.y14c{bottom:768.432150px;}
.y99{bottom:769.029450px;}
.yc3{bottom:772.672500px;}
.y137{bottom:782.191350px;}
.y75{bottom:782.545950px;}
.yca{bottom:782.657400px;}
.y102{bottom:783.179400px;}
.yc2{bottom:789.048000px;}
.y98{bottom:790.359450px;}
.yc9{bottom:799.221900px;}
.y126{bottom:799.636650px;}
.y74{bottom:800.545950px;}
.y101{bottom:801.179400px;}
.yc1{bottom:803.263500px;}
.y136{bottom:806.191350px;}
.y97{bottom:811.686900px;}
.yc8{bottom:815.597400px;}
.y125{bottom:815.836650px;}
.yc0{bottom:817.303500px;}
.y73{bottom:818.545950px;}
.y100{bottom:819.179400px;}
.y135{bottom:824.191350px;}
.y96{bottom:833.014350px;}
.y72{bottom:836.545950px;}
.yff{bottom:837.179400px;}
.y134{bottom:842.191350px;}
.y95{bottom:854.345850px;}
.y14b{bottom:854.545950px;}
.yfe{bottom:855.179400px;}
.yc7{bottom:856.470300px;}
.y133{bottom:860.191350px;}
.y71{bottom:862.045950px;}
.ybf{bottom:863.138250px;}
.y14a{bottom:872.545950px;}
.yfd{bottom:873.179400px;}
.y94{bottom:875.675850px;}
.y132{bottom:878.191350px;}
.y149{bottom:890.545950px;}
.yfc{bottom:891.179400px;}
.y7{bottom:893.137200px;}
.y9{bottom:895.588350px;}
.y131{bottom:896.191350px;}
.y93{bottom:897.032850px;}
.y148{bottom:908.545950px;}
.yfb{bottom:909.179400px;}
.y70{bottom:911.545950px;}
.y130{bottom:914.191350px;}
.y92{bottom:918.362850px;}
.ybe{bottom:922.645950px;}
.y147{bottom:926.545950px;}
.yfa{bottom:927.179400px;}
.y6f{bottom:929.545950px;}
.y12f{bottom:938.191350px;}
.ybd{bottom:938.845950px;}
.y91{bottom:939.717150px;}
.y146{bottom:944.545950px;}
.yf9{bottom:945.179400px;}
.y6e{bottom:947.545950px;}
.y12e{bottom:956.191350px;}
.ybc{bottom:961.045950px;}
.y90{bottom:961.047600px;}
.y145{bottom:962.545950px;}
.yf8{bottom:963.179400px;}
.y6d{bottom:965.545950px;}
.y12d{bottom:974.191350px;}
.ybb{bottom:979.045950px;}
.y144{bottom:980.545950px;}
.yf7{bottom:981.179400px;}
.y8f{bottom:982.377600px;}
.y12c{bottom:992.191350px;}
.y48{bottom:996.445950px;}
.y6c{bottom:997.045950px;}
.y143{bottom:998.545950px;}
.yf6{bottom:999.179400px;}
.y8e{bottom:1004.949600px;}
.y12b{bottom:1010.191350px;}
.y47{bottom:1012.645950px;}
.y6b{bottom:1015.045950px;}
.y6{bottom:1018.586400px;}
.y8d{bottom:1021.149600px;}
.y142{bottom:1024.045950px;}
.y5{bottom:1024.773900px;}
.y12a{bottom:1028.191350px;}
.y46{bottom:1028.845950px;}
.y6a{bottom:1033.045950px;}
.yf5{bottom:1040.044050px;}
.y8{bottom:1041.101850px;}
.y129{bottom:1049.191350px;}
.y45{bottom:1051.045950px;}
.y8c{bottom:1058.888250px;}
.yf4{bottom:1061.374050px;}
.y44{bottom:1069.045950px;}
.y141{bottom:1073.545950px;}
.yf3{bottom:1082.704050px;}
.y43{bottom:1087.045950px;}
.y140{bottom:1091.545950px;}
.y8b{bottom:1098.691350px;}
.yf2{bottom:1104.034050px;}
.y42{bottom:1105.045950px;}
.y13f{bottom:1109.545950px;}
.y8a{bottom:1116.691350px;}
.y41{bottom:1123.045950px;}
.yf1{bottom:1125.364050px;}
.y13e{bottom:1127.545950px;}
.y89{bottom:1134.691350px;}
.y40{bottom:1141.045950px;}
.yf0{bottom:1146.691350px;}
.y88{bottom:1152.691350px;}
.y3f{bottom:1159.045950px;}
.yef{bottom:1164.691350px;}
.y87{bottom:1170.691350px;}
.y124{bottom:1173.527700px;}
.yee{bottom:1182.691350px;}
.y3e{bottom:1184.545950px;}
.y86{bottom:1188.691350px;}
.y123{bottom:1189.727700px;}
.h19{height:22.701721px;}
.hd{height:23.928574px;}
.h18{height:28.122696px;}
.h1d{height:31.640625px;}
.ha{height:36.000000px;}
.h2{height:36.422400px;}
.he{height:38.913574px;}
.h1b{height:44.742741px;}
.h16{height:45.000000px;}
.hb{height:46.696289px;}
.h15{height:46.706489px;}
.h10{height:46.707089px;}
.h14{height:46.769489px;}
.h11{height:47.276367px;}
.h12{height:47.454937px;}
.hc{height:47.460938px;}
.h13{height:47.471138px;}
.h1a{height:50.751042px;}
.hf{height:51.677227px;}
.h9{height:51.884766px;}
.h7{height:52.734375px;}
.h4{height:54.000000px;}
.h6{height:58.007812px;}
.h1c{height:63.000000px;}
.h1f{height:63.035156px;}
.h5{height:64.013812px;}
.h8{height:73.828125px;}
.h1e{height:105.875156px;}
.h3{height:126.562500px;}
.h17{height:296.970000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:447.141000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:30.775350px;}
.x12{left:38.880000px;}
.x11{left:44.137950px;}
.x10{left:54.653700px;}
.x1{left:62.100000px;}
.x8{left:63.779550px;}
.x2{left:65.412900px;}
.xb{left:69.779550px;}
.x22{left:71.731350px;}
.x13{left:73.956750px;}
.x23{left:78.575850px;}
.x14{left:85.800000px;}
.x28{left:99.779550px;}
.x20{left:111.142500px;}
.x3{left:119.196900px;}
.x21{left:121.084800px;}
.x29{left:124.200000px;}
.x15{left:126.286800px;}
.x16{left:138.130050px;}
.xc{left:176.227050px;}
.x17{left:187.094850px;}
.x4{left:205.662750px;}
.x18{left:239.424900px;}
.x25{left:245.425950px;}
.x26{left:252.270450px;}
.x19{left:290.816400px;}
.x1a{left:291.879300px;}
.x24{left:309.190200px;}
.x1b{left:343.146300px;}
.x1c{left:344.209200px;}
.xf{left:346.867050px;}
.x1d{left:387.309450px;}
.x1e{left:394.317450px;}
.x9{left:467.714550px;}
.x2a{left:470.716500px;}
.x27{left:473.716500px;}
.xd{left:478.543050px;}
.xa{left:683.704050px;}
.xe{left:737.246550px;}
.x6{left:774.172950px;}
.x5{left:792.172950px;}
.x7{left:794.811750px;}
@media print{
.v3{vertical-align:-13.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.338667pt;}
.v4{vertical-align:13.320000pt;}
.v2{vertical-align:15.984000pt;}
.v5{vertical-align:38.080000pt;}
.ls2{letter-spacing:-7.680000pt;}
.ls3{letter-spacing:-2.133333pt;}
.ls5{letter-spacing:-1.866667pt;}
.ls6{letter-spacing:-1.333333pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls17{letter-spacing:-0.288000pt;}
.lsa{letter-spacing:-0.265600pt;}
.ls18{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.206341pt;}
.lsf{letter-spacing:-0.176864pt;}
.lse{letter-spacing:-0.147387pt;}
.ls7{letter-spacing:-0.106240pt;}
.ls10{letter-spacing:-0.088432pt;}
.lsd{letter-spacing:-0.036516pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000267pt;}
.ls16{letter-spacing:0.048000pt;}
.ls12{letter-spacing:0.066372pt;}
.ls14{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.159360pt;}
.ls8{letter-spacing:0.318720pt;}
.ls15{letter-spacing:0.336000pt;}
.ls13{letter-spacing:7.344000pt;}
.lsb{letter-spacing:109.041067pt;}
.ls0{letter-spacing:621.690667pt;}
.ws0{word-spacing:-20.757333pt;}
.ws1e{word-spacing:-14.926720pt;}
.ws20{word-spacing:-14.826667pt;}
.ws5{word-spacing:-14.501760pt;}
.ws11{word-spacing:-13.344000pt;}
.ws1f{word-spacing:-13.056000pt;}
.ws4{word-spacing:-11.120000pt;}
.ws12{word-spacing:-8.216160pt;}
.ws10{word-spacing:-7.779552pt;}
.ws14{word-spacing:-6.573445pt;}
.ws16{word-spacing:-6.514491pt;}
.ws13{word-spacing:-6.485013pt;}
.ws3{word-spacing:-6.482960pt;}
.ws15{word-spacing:-6.455536pt;}
.ws17{word-spacing:-4.800000pt;}
.ws28{word-spacing:-0.864000pt;}
.ws8{word-spacing:-0.849920pt;}
.ws29{word-spacing:-0.624000pt;}
.ws23{word-spacing:-0.576000pt;}
.ws24{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.464602pt;}
.ws7{word-spacing:-0.371840pt;}
.ws22{word-spacing:-0.336000pt;}
.ws2{word-spacing:-0.160000pt;}
.ws2c{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:0.029477pt;}
.ws25{word-spacing:0.048000pt;}
.ws6{word-spacing:0.053120pt;}
.ws18{word-spacing:0.088432pt;}
.ws21{word-spacing:0.096000pt;}
.ws9{word-spacing:0.106240pt;}
.ws27{word-spacing:0.336000pt;}
.ws26{word-spacing:0.384000pt;}
.ws1d{word-spacing:0.409599pt;}
.ws1b{word-spacing:0.530592pt;}
.ws2b{word-spacing:0.533333pt;}
.ws1a{word-spacing:0.560069pt;}
.ws2a{word-spacing:1.056000pt;}
.wsc{word-spacing:120.144000pt;}
.wsd{word-spacing:122.928000pt;}
.wse{word-spacing:129.360000pt;}
.wsb{word-spacing:130.656000pt;}
.wsf{word-spacing:133.440000pt;}
.wsa{word-spacing:183.840000pt;}
._b{margin-left:-2721.237333pt;}
._7{margin-left:-9.600000pt;}
._8{margin-left:-7.116800pt;}
._6{margin-left:-5.676800pt;}
._5{margin-left:-4.531200pt;}
._a{margin-left:-3.501867pt;}
._2{margin-left:-2.560000pt;}
._3{margin-left:-1.280000pt;}
._0{width:1.689600pt;}
._9{width:2.912000pt;}
._42{width:4.814400pt;}
._4{width:7.692800pt;}
._4a{width:15.358745pt;}
._48{width:19.143990pt;}
._49{width:20.290459pt;}
._35{width:42.848000pt;}
._2d{width:58.784000pt;}
._e{width:60.192000pt;}
._30{width:64.272000pt;}
._2a{width:66.705248pt;}
._37{width:67.872000pt;}
._2f{width:70.704000pt;}
._4c{width:72.432000pt;}
._31{width:73.488000pt;}
._32{width:74.640000pt;}
._f{width:81.216000pt;}
._33{width:82.656000pt;}
._13{width:84.144000pt;}
._36{width:86.640000pt;}
._45{width:88.272000pt;}
._2e{width:89.472000pt;}
._44{width:94.704000pt;}
._46{width:97.488000pt;}
._41{width:98.640000pt;}
._47{width:106.656000pt;}
._c{width:110.988800pt;}
._3f{width:112.272000pt;}
._3a{width:113.472000pt;}
._3e{width:118.704000pt;}
._40{width:121.488000pt;}
._14{width:128.496000pt;}
._28{width:136.272000pt;}
._3d{width:137.472000pt;}
._23{width:142.704000pt;}
._24{width:145.488000pt;}
._1d{width:146.784000pt;}
._25{width:149.472000pt;}
._1c{width:153.216000pt;}
._1e{width:156.000000pt;}
._26{width:157.488000pt;}
._1f{width:159.984000pt;}
._22{width:161.472000pt;}
._50{width:163.836800pt;}
._52{width:165.264000pt;}
._2c{width:168.000000pt;}
._1b{width:171.984000pt;}
._d{width:174.096000pt;}
._2b{width:195.264896pt;}
._17{width:199.968000pt;}
._53{width:202.236800pt;}
._16{width:203.280000pt;}
._19{width:211.968000pt;}
._18{width:216.480000pt;}
._15{width:228.480000pt;}
._54{width:232.032000pt;}
._55{width:239.712000pt;}
._11{width:242.508160pt;}
._27{width:250.534400pt;}
._4d{width:257.376000pt;}
._51{width:266.784000pt;}
._4e{width:282.864000pt;}
._4f{width:303.888000pt;}
._1a{width:319.342619pt;}
._4b{width:333.660800pt;}
._21{width:374.832000pt;}
._10{width:386.989440pt;}
._20{width:460.442848pt;}
._29{width:486.816000pt;}
._56{width:594.637333pt;}
._12{width:623.744000pt;}
._39{width:642.528000pt;}
._3c{width:687.648896pt;}
._43{width:744.321600pt;}
._38{width:769.872000pt;}
._3b{width:772.266848pt;}
._34{width:846.720000pt;}
._1{width:2187.941867pt;}
.fs8{font-size:23.320000pt;}
.fs7{font-size:27.984000pt;}
.fsc{font-size:29.477333pt;}
.fsf{font-size:32.000000pt;}
.fsb{font-size:36.516267pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs4{font-size:53.333333pt;}
.fse{font-size:58.514133pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:66.371733pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:5.307733pt;}
.y1{bottom:28.249867pt;}
.y152{bottom:30.025600pt;}
.yb8{bottom:33.442000pt;}
.yb7{bottom:47.733067pt;}
.yaf{bottom:56.025333pt;}
.yb6{bottom:56.683333pt;}
.y69{bottom:62.162267pt;}
.y22{bottom:64.289200pt;}
.y3d{bottom:65.302533pt;}
.yb0{bottom:65.675467pt;}
.y68{bottom:73.162267pt;}
.y21{bottom:80.289200pt;}
.y3c{bottom:81.302533pt;}
.y67{bottom:87.492267pt;}
.y20{bottom:96.289200pt;}
.y3b{bottom:97.302533pt;}
.yb1{bottom:102.781733pt;}
.y66{bottom:103.152933pt;}
.y1f{bottom:112.289200pt;}
.y3a{bottom:113.302533pt;}
.y65{bottom:117.552933pt;}
.yb9{bottom:119.018533pt;}
.yed{bottom:123.426800pt;}
.y122{bottom:124.149600pt;}
.y1e{bottom:128.289200pt;}
.y39{bottom:129.302533pt;}
.y64{bottom:131.952933pt;}
.yec{bottom:139.426800pt;}
.yb2{bottom:139.888400pt;}
.y121{bottom:143.109600pt;}
.y1d{bottom:144.289200pt;}
.y38{bottom:145.302533pt;}
.y85{bottom:149.597920pt;}
.y63{bottom:150.912933pt;}
.yeb{bottom:155.426800pt;}
.y1c{bottom:160.289200pt;}
.y37{bottom:161.302533pt;}
.y120{bottom:162.069600pt;}
.y62{bottom:165.312933pt;}
.yea{bottom:171.426800pt;}
.yb3{bottom:176.994933pt;}
.y36{bottom:177.302533pt;}
.y61{bottom:179.712933pt;}
.y11f{bottom:181.029600pt;}
.y1b{bottom:182.955867pt;}
.ye9{bottom:187.426800pt;}
.y35{bottom:193.302533pt;}
.y60{bottom:194.112933pt;}
.y11e{bottom:199.989600pt;}
.ye8{bottom:203.426800pt;}
.y34{bottom:209.302533pt;}
.y5f{bottom:213.072933pt;}
.yb4{bottom:214.101200pt;}
.y11d{bottom:218.947200pt;}
.ye7{bottom:219.426800pt;}
.y33{bottom:225.302533pt;}
.y1a{bottom:226.955867pt;}
.y5e{bottom:227.472933pt;}
.y11c{bottom:234.947200pt;}
.ye6{bottom:235.426800pt;}
.y32{bottom:241.302533pt;}
.y5d{bottom:241.872933pt;}
.y19{bottom:242.955867pt;}
.yb5{bottom:251.207733pt;}
.ye5{bottom:251.426800pt;}
.y31{bottom:257.302533pt;}
.y18{bottom:258.955867pt;}
.y11b{bottom:260.159467pt;}
.y5c{bottom:260.832933pt;}
.ye4{bottom:267.426800pt;}
.y30{bottom:273.302533pt;}
.y17{bottom:274.955867pt;}
.y11a{bottom:276.159467pt;}
.y5b{bottom:279.792933pt;}
.y2f{bottom:289.302533pt;}
.ye3{bottom:290.088133pt;}
.y16{bottom:290.955867pt;}
.y119{bottom:292.159467pt;}
.y5a{bottom:298.750667pt;}
.y2e{bottom:305.302533pt;}
.y84{bottom:306.248800pt;}
.y15{bottom:306.955867pt;}
.y118{bottom:308.159467pt;}
.ye2{bottom:311.424133pt;}
.y2d{bottom:321.302533pt;}
.y14{bottom:322.955867pt;}
.y59{bottom:323.041733pt;}
.ye1{bottom:332.760133pt;}
.yae{bottom:335.362533pt;}
.y117{bottom:336.159467pt;}
.y2c{bottom:337.302533pt;}
.y13{bottom:338.955867pt;}
.y58{bottom:339.041733pt;}
.y116{bottom:352.159467pt;}
.y2b{bottom:353.302533pt;}
.y12{bottom:354.955867pt;}
.y57{bottom:355.041733pt;}
.yad{bottom:356.697200pt;}
.y128{bottom:359.828667pt;}
.y115{bottom:368.159467pt;}
.yac{bottom:368.697200pt;}
.y11{bottom:370.955867pt;}
.y56{bottom:371.041733pt;}
.ye0{bottom:371.426800pt;}
.y127{bottom:374.228667pt;}
.yab{bottom:380.697200pt;}
.y2a{bottom:381.302533pt;}
.y114{bottom:384.159467pt;}
.ydf{bottom:385.826800pt;}
.y10{bottom:386.955867pt;}
.y55{bottom:387.041733pt;}
.yaa{bottom:396.027200pt;}
.y29{bottom:397.302533pt;}
.y113{bottom:400.159467pt;}
.yde{bottom:400.226800pt;}
.yf{bottom:402.955867pt;}
.y54{bottom:403.041733pt;}
.y28{bottom:413.302533pt;}
.ydd{bottom:414.626800pt;}
.y112{bottom:416.159467pt;}
.ya9{bottom:416.722667pt;}
.ye{bottom:418.955867pt;}
.y53{bottom:419.041733pt;}
.ydc{bottom:429.026800pt;}
.y27{bottom:429.302533pt;}
.ya8{bottom:431.122667pt;}
.y111{bottom:432.159467pt;}
.yd{bottom:434.955867pt;}
.y52{bottom:441.708400pt;}
.ydb{bottom:443.426800pt;}
.y26{bottom:445.302533pt;}
.y110{bottom:448.159467pt;}
.ya7{bottom:450.080400pt;}
.yc{bottom:450.955867pt;}
.y83{bottom:455.863067pt;}
.yda{bottom:457.826800pt;}
.y25{bottom:461.302533pt;}
.y10f{bottom:464.159467pt;}
.ya6{bottom:464.480400pt;}
.yb{bottom:466.955867pt;}
.yd9{bottom:472.226800pt;}
.y82{bottom:475.596400pt;}
.y24{bottom:477.302533pt;}
.y10e{bottom:480.159467pt;}
.ya5{bottom:483.438000pt;}
.y51{bottom:485.708400pt;}
.yd8{bottom:486.626800pt;}
.ya{bottom:489.622533pt;}
.y81{bottom:491.596400pt;}
.y23{bottom:493.302533pt;}
.y157{bottom:493.636800pt;}
.y10d{bottom:496.159467pt;}
.ya4{bottom:497.838000pt;}
.yd7{bottom:501.026800pt;}
.y50{bottom:501.708400pt;}
.y80{bottom:507.596400pt;}
.y156{bottom:509.632800pt;}
.y10c{bottom:512.159467pt;}
.yd6{bottom:515.426800pt;}
.ya3{bottom:516.798000pt;}
.y4f{bottom:517.708400pt;}
.y7f{bottom:523.596400pt;}
.y155{bottom:525.632800pt;}
.yd5{bottom:529.826800pt;}
.ya2{bottom:531.181733pt;}
.y4e{bottom:533.708400pt;}
.y154{bottom:535.312800pt;}
.y7e{bottom:539.596400pt;}
.y10b{bottom:540.159467pt;}
.yd4{bottom:544.226800pt;}
.y4d{bottom:549.708400pt;}
.ya1{bottom:550.141733pt;}
.y153{bottom:551.308800pt;}
.y7d{bottom:555.596400pt;}
.y10a{bottom:556.159467pt;}
.yd3{bottom:558.626800pt;}
.ya0{bottom:564.541733pt;}
.y4c{bottom:565.708400pt;}
.y7c{bottom:571.596400pt;}
.y4{bottom:571.781600pt;}
.y109{bottom:572.159467pt;}
.yd2{bottom:573.026800pt;}
.y4b{bottom:581.708400pt;}
.y9f{bottom:583.501733pt;}
.yd1{bottom:587.426800pt;}
.y7b{bottom:587.596400pt;}
.y108{bottom:588.159467pt;}
.y4a{bottom:597.708400pt;}
.y9e{bottom:597.901733pt;}
.y13d{bottom:599.281200pt;}
.y151{bottom:603.050800pt;}
.y7a{bottom:603.596400pt;}
.y107{bottom:604.159467pt;}
.yd0{bottom:610.111467pt;}
.y3{bottom:610.690000pt;}
.y13c{bottom:615.281200pt;}
.y9d{bottom:616.861733pt;}
.y150{bottom:619.050800pt;}
.ycf{bottom:622.747467pt;}
.y13b{bottom:631.281200pt;}
.y79{bottom:631.596400pt;}
.y106{bottom:632.159467pt;}
.y14f{bottom:635.050800pt;}
.y9c{bottom:635.821733pt;}
.yce{bottom:637.303467pt;}
.y49{bottom:640.375067pt;}
.y2{bottom:645.346000pt;}
.yc6{bottom:647.136000pt;}
.y13a{bottom:647.281200pt;}
.y78{bottom:647.596400pt;}
.y105{bottom:648.159467pt;}
.y9b{bottom:650.221733pt;}
.y14e{bottom:651.050800pt;}
.ycd{bottom:651.859467pt;}
.yc5{bottom:659.616000pt;}
.y139{bottom:663.281200pt;}
.y77{bottom:663.596400pt;}
.y104{bottom:664.159467pt;}
.ycc{bottom:666.583467pt;}
.y14d{bottom:667.050800pt;}
.y9a{bottom:669.181733pt;}
.yc4{bottom:674.340000pt;}
.y138{bottom:679.281200pt;}
.y76{bottom:679.596400pt;}
.y103{bottom:680.159467pt;}
.ycb{bottom:681.139467pt;}
.y14c{bottom:683.050800pt;}
.y99{bottom:683.581733pt;}
.yc3{bottom:686.820000pt;}
.y137{bottom:695.281200pt;}
.y75{bottom:695.596400pt;}
.yca{bottom:695.695467pt;}
.y102{bottom:696.159467pt;}
.yc2{bottom:701.376000pt;}
.y98{bottom:702.541733pt;}
.yc9{bottom:710.419467pt;}
.y126{bottom:710.788133pt;}
.y74{bottom:711.596400pt;}
.y101{bottom:712.159467pt;}
.yc1{bottom:714.012000pt;}
.y136{bottom:716.614533pt;}
.y97{bottom:721.499467pt;}
.yc8{bottom:724.975467pt;}
.y125{bottom:725.188133pt;}
.yc0{bottom:726.492000pt;}
.y73{bottom:727.596400pt;}
.y100{bottom:728.159467pt;}
.y135{bottom:732.614533pt;}
.y96{bottom:740.457200pt;}
.y72{bottom:743.596400pt;}
.yff{bottom:744.159467pt;}
.y134{bottom:748.614533pt;}
.y95{bottom:759.418533pt;}
.y14b{bottom:759.596400pt;}
.yfe{bottom:760.159467pt;}
.yc7{bottom:761.306933pt;}
.y133{bottom:764.614533pt;}
.y71{bottom:766.263067pt;}
.ybf{bottom:767.234000pt;}
.y14a{bottom:775.596400pt;}
.yfd{bottom:776.159467pt;}
.y94{bottom:778.378533pt;}
.y132{bottom:780.614533pt;}
.y149{bottom:791.596400pt;}
.yfc{bottom:792.159467pt;}
.y7{bottom:793.899733pt;}
.y9{bottom:796.078533pt;}
.y131{bottom:796.614533pt;}
.y93{bottom:797.362533pt;}
.y148{bottom:807.596400pt;}
.yfb{bottom:808.159467pt;}
.y70{bottom:810.263067pt;}
.y130{bottom:812.614533pt;}
.y92{bottom:816.322533pt;}
.ybe{bottom:820.129733pt;}
.y147{bottom:823.596400pt;}
.yfa{bottom:824.159467pt;}
.y6f{bottom:826.263067pt;}
.y12f{bottom:833.947867pt;}
.ybd{bottom:834.529733pt;}
.y91{bottom:835.304133pt;}
.y146{bottom:839.596400pt;}
.yf9{bottom:840.159467pt;}
.y6e{bottom:842.263067pt;}
.y12e{bottom:849.947867pt;}
.ybc{bottom:854.263067pt;}
.y90{bottom:854.264533pt;}
.y145{bottom:855.596400pt;}
.yf8{bottom:856.159467pt;}
.y6d{bottom:858.263067pt;}
.y12d{bottom:865.947867pt;}
.ybb{bottom:870.263067pt;}
.y144{bottom:871.596400pt;}
.yf7{bottom:872.159467pt;}
.y8f{bottom:873.224533pt;}
.y12c{bottom:881.947867pt;}
.y48{bottom:885.729733pt;}
.y6c{bottom:886.263067pt;}
.y143{bottom:887.596400pt;}
.yf6{bottom:888.159467pt;}
.y8e{bottom:893.288533pt;}
.y12b{bottom:897.947867pt;}
.y47{bottom:900.129733pt;}
.y6b{bottom:902.263067pt;}
.y6{bottom:905.410133pt;}
.y8d{bottom:907.688533pt;}
.y142{bottom:910.263067pt;}
.y5{bottom:910.910133pt;}
.y12a{bottom:913.947867pt;}
.y46{bottom:914.529733pt;}
.y6a{bottom:918.263067pt;}
.yf5{bottom:924.483600pt;}
.y8{bottom:925.423867pt;}
.y129{bottom:932.614533pt;}
.y45{bottom:934.263067pt;}
.y8c{bottom:941.234000pt;}
.yf4{bottom:943.443600pt;}
.y44{bottom:950.263067pt;}
.y141{bottom:954.263067pt;}
.yf3{bottom:962.403600pt;}
.y43{bottom:966.263067pt;}
.y140{bottom:970.263067pt;}
.y8b{bottom:976.614533pt;}
.yf2{bottom:981.363600pt;}
.y42{bottom:982.263067pt;}
.y13f{bottom:986.263067pt;}
.y8a{bottom:992.614533pt;}
.y41{bottom:998.263067pt;}
.yf1{bottom:1000.323600pt;}
.y13e{bottom:1002.263067pt;}
.y89{bottom:1008.614533pt;}
.y40{bottom:1014.263067pt;}
.yf0{bottom:1019.281200pt;}
.y88{bottom:1024.614533pt;}
.y3f{bottom:1030.263067pt;}
.yef{bottom:1035.281200pt;}
.y87{bottom:1040.614533pt;}
.y124{bottom:1043.135733pt;}
.yee{bottom:1051.281200pt;}
.y3e{bottom:1052.929733pt;}
.y86{bottom:1056.614533pt;}
.y123{bottom:1057.535733pt;}
.h19{height:20.179307pt;}
.hd{height:21.269844pt;}
.h18{height:24.997952pt;}
.h1d{height:28.125000pt;}
.ha{height:32.000000pt;}
.h2{height:32.375467pt;}
.he{height:34.589844pt;}
.h1b{height:39.771325pt;}
.h16{height:40.000000pt;}
.hb{height:41.507812pt;}
.h15{height:41.516879pt;}
.h10{height:41.517413pt;}
.h14{height:41.572879pt;}
.h11{height:42.023438pt;}
.h12{height:42.182167pt;}
.hc{height:42.187500pt;}
.h13{height:42.196567pt;}
.h1a{height:45.112037pt;}
.hf{height:45.935313pt;}
.h9{height:46.119792pt;}
.h7{height:46.875000pt;}
.h4{height:48.000000pt;}
.h6{height:51.562500pt;}
.h1c{height:56.000000pt;}
.h1f{height:56.031250pt;}
.h5{height:56.901167pt;}
.h8{height:65.625000pt;}
.h1e{height:94.111250pt;}
.h3{height:112.500000pt;}
.h17{height:263.973333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:397.458667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:27.355867pt;}
.x12{left:34.560000pt;}
.x11{left:39.233733pt;}
.x10{left:48.581067pt;}
.x1{left:55.200000pt;}
.x8{left:56.692933pt;}
.x2{left:58.144800pt;}
.xb{left:62.026267pt;}
.x22{left:63.761200pt;}
.x13{left:65.739333pt;}
.x23{left:69.845200pt;}
.x14{left:76.266667pt;}
.x28{left:88.692933pt;}
.x20{left:98.793333pt;}
.x3{left:105.952800pt;}
.x21{left:107.630933pt;}
.x29{left:110.400000pt;}
.x15{left:112.254933pt;}
.x16{left:122.782267pt;}
.xc{left:156.646267pt;}
.x17{left:166.306533pt;}
.x4{left:182.811333pt;}
.x18{left:212.822133pt;}
.x25{left:218.156400pt;}
.x26{left:224.240400pt;}
.x19{left:258.503467pt;}
.x1a{left:259.448267pt;}
.x24{left:274.835733pt;}
.x1b{left:305.018933pt;}
.x1c{left:305.963733pt;}
.xf{left:308.326267pt;}
.x1d{left:344.275067pt;}
.x1e{left:350.504400pt;}
.x9{left:415.746267pt;}
.x2a{left:418.414667pt;}
.x27{left:421.081333pt;}
.xd{left:425.371600pt;}
.xa{left:607.736933pt;}
.xe{left:655.330267pt;}
.x6{left:688.153733pt;}
.x5{left:704.153733pt;}
.x7{left:706.499333pt;}
}




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