
    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_e09ee303223389ddcb569beb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_55c68d0e6bd3f409416752cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_d19a8cc2b3dab9baeedf82db.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_f1a8754c7008992f12012d46.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_3a2662935588fcd67495c3bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_a8925f33284823f7958423cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_777f1e263ced965b3ad20051.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_228c6afe293403eec4afd62a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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;}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.600000px;}
.v2{vertical-align:79.200600px;}
.v3{vertical-align:118.800000px;}
.ls17{letter-spacing:-5.520000px;}
.lsf{letter-spacing:-4.950000px;}
.ls2{letter-spacing:-2.760000px;}
.ls10{letter-spacing:-2.442000px;}
.ls1d{letter-spacing:-1.035000px;}
.ls4{letter-spacing:-0.966000px;}
.lse{letter-spacing:-0.858000px;}
.ls5{letter-spacing:-0.483000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000600px;}
.ls14{letter-spacing:0.000624px;}
.ls9{letter-spacing:0.000647px;}
.ls1f{letter-spacing:0.011400px;}
.ls1e{letter-spacing:0.012000px;}
.ls0{letter-spacing:0.483000px;}
.lsc{letter-spacing:2.948824px;}
.ls8{letter-spacing:4.309412px;}
.ls7{letter-spacing:4.826471px;}
.ls1b{letter-spacing:5.721600px;}
.ls1a{letter-spacing:6.693000px;}
.ls15{letter-spacing:7.459485px;}
.ls11{letter-spacing:10.164706px;}
.ls1c{letter-spacing:15.903000px;}
.lsa{letter-spacing:17.212353px;}
.ls12{letter-spacing:19.275882px;}
.ls3{letter-spacing:21.867087px;}
.ls18{letter-spacing:24.840000px;}
.ls13{letter-spacing:26.561765px;}
.ls16{letter-spacing:31.097629px;}
.ls19{letter-spacing:31.119000px;}
.lsb{letter-spacing:39.195882px;}
.lsd{letter-spacing:125.108400px;}
.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;}
}
.ws19{word-spacing:-31.119000px;}
.ws18{word-spacing:-24.840000px;}
.ws1{word-spacing:-17.250000px;}
.ws9{word-spacing:-16.500000px;}
.ws8{word-spacing:-15.642000px;}
.ws7{word-spacing:-15.000000px;}
.ws0{word-spacing:-14.490000px;}
.ws17{word-spacing:-11.730000px;}
.ws1a{word-spacing:-6.693000px;}
.ws3{word-spacing:-0.483000px;}
.ws6{word-spacing:-0.069000px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.483000px;}
.ws4{word-spacing:0.966000px;}
.ws1b{word-spacing:1.035000px;}
.ws12{word-spacing:92.108400px;}
.ws13{word-spacing:98.209800px;}
.ws16{word-spacing:154.482000px;}
.wsb{word-spacing:224.626200px;}
.ws15{word-spacing:224.626800px;}
.ws11{word-spacing:261.080400px;}
.wsd{word-spacing:267.865200px;}
.wsc{word-spacing:277.411200px;}
.ws14{word-spacing:295.567200px;}
.wsf{word-spacing:312.666000px;}
.ws10{word-spacing:318.308400px;}
.wse{word-spacing:329.297400px;}
.wsa{word-spacing:340.057200px;}
._41{margin-left:-31.732757px;}
._40{margin-left:-25.601394px;}
._42{margin-left:-17.863293px;}
._1d{margin-left:-16.723225px;}
._3e{margin-left:-12.429000px;}
._6{margin-left:-10.743600px;}
._3{margin-left:-8.790600px;}
._19{margin-left:-7.776300px;}
._5{margin-left:-6.081600px;}
._8{margin-left:-4.960800px;}
._7{margin-left:-3.882600px;}
._0{margin-left:-2.501400px;}
._4{margin-left:-1.021800px;}
._1{width:1.663200px;}
._2{width:2.773800px;}
._d{width:4.120800px;}
._17{width:5.784900px;}
._1a{width:7.291200px;}
._b{width:8.808000px;}
._9{width:9.822000px;}
._10{width:10.863600px;}
._c{width:12.228000px;}
._a{width:13.236000px;}
._12{width:14.338200px;}
._16{width:15.763800px;}
._21{width:18.324000px;}
._14{width:20.019600px;}
._15{width:21.350100px;}
._1c{width:22.973700px;}
._18{width:24.232500px;}
._13{width:26.275200px;}
._22{width:27.351600px;}
._1e{width:28.465800px;}
._20{width:29.725500px;}
._1b{width:31.648500px;}
._11{width:32.747400px;}
._3d{width:34.136400px;}
._45{width:35.186700px;}
._e{width:36.840600px;}
._f{width:37.961400px;}
._24{width:39.429000px;}
._25{width:41.227500px;}
._3f{width:42.241200px;}
._43{width:43.295400px;}
._4c{width:44.398200px;}
._44{width:45.725100px;}
._29{width:49.317900px;}
._28{width:50.915100px;}
._1f{width:52.522800px;}
._4a{width:54.607800px;}
._49{width:55.659000px;}
._47{width:57.187200px;}
._27{width:59.070900px;}
._4b{width:61.300200px;}
._46{width:68.185800px;}
._48{width:70.175700px;}
._23{width:96.903600px;}
._26{width:144.630600px;}
._3a{width:168.403800px;}
._2d{width:204.417000px;}
._2c{width:240.160200px;}
._3c{width:270.012600px;}
._31{width:272.140800px;}
._38{width:287.332800px;}
._39{width:288.557400px;}
._2a{width:306.931800px;}
._32{width:317.605800px;}
._30{width:322.465800px;}
._34{width:327.456000px;}
._37{width:350.112000px;}
._3b{width:361.449900px;}
._2f{width:378.485400px;}
._35{width:381.521400px;}
._36{width:382.746000px;}
._33{width:398.021400px;}
._2e{width:425.543400px;}
._2b{width:456.761400px;}
.fc2{color:rgb(171,65,167);}
.fc3{color:rgb(33,43,50);}
.fc1{color:rgb(198,30,36);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:69.000000px;}
.fs2{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:110.975700px;}
.y1{bottom:111.082050px;}
.y16f{bottom:112.488300px;}
.y171{bottom:112.488750px;}
.y42{bottom:113.338800px;}
.y17{bottom:113.976450px;}
.yd2{bottom:116.102550px;}
.yd0{bottom:145.363350px;}
.y71{bottom:147.729750px;}
.y9f{bottom:148.007700px;}
.y16e{bottom:149.855550px;}
.y3f{bottom:150.185400px;}
.y13e{bottom:150.294600px;}
.y2b{bottom:150.463350px;}
.y10b{bottom:160.171650px;}
.ycf{bottom:163.363350px;}
.y70{bottom:168.429750px;}
.y9e{bottom:168.707700px;}
.y10a{bottom:170.071650px;}
.y16d{bottom:170.555550px;}
.y3e{bottom:170.885400px;}
.y13d{bottom:170.994600px;}
.y2a{bottom:171.163350px;}
.y10c{bottom:179.971650px;}
.yce{bottom:181.363350px;}
.y6f{bottom:189.129750px;}
.y9d{bottom:189.407700px;}
.y16c{bottom:191.255550px;}
.y3d{bottom:191.585400px;}
.y13c{bottom:191.694600px;}
.y29{bottom:191.863350px;}
.y109{bottom:201.107700px;}
.y6e{bottom:209.829750px;}
.y9c{bottom:210.107700px;}
.y107{bottom:211.007700px;}
.y16b{bottom:211.955550px;}
.y3c{bottom:212.285400px;}
.y13b{bottom:212.394600px;}
.y28{bottom:212.563350px;}
.y106{bottom:220.907700px;}
.y6d{bottom:230.529750px;}
.y9b{bottom:230.807700px;}
.y16a{bottom:232.655700px;}
.y3b{bottom:232.985400px;}
.y13a{bottom:233.094600px;}
.y27{bottom:233.263350px;}
.y108{bottom:240.707700px;}
.y6c{bottom:251.229750px;}
.y9a{bottom:251.507700px;}
.y169{bottom:253.355550px;}
.y3a{bottom:253.685400px;}
.y139{bottom:253.794600px;}
.y26{bottom:253.963350px;}
.y105{bottom:262.761300px;}
.y6b{bottom:271.929750px;}
.y99{bottom:272.207700px;}
.y103{bottom:272.661300px;}
.y168{bottom:274.055550px;}
.y39{bottom:274.385400px;}
.y138{bottom:274.494600px;}
.y25{bottom:274.663350px;}
.y102{bottom:282.561300px;}
.y6a{bottom:292.629750px;}
.y98{bottom:292.907700px;}
.y167{bottom:294.755550px;}
.y38{bottom:295.085400px;}
.y137{bottom:295.194600px;}
.y24{bottom:295.363350px;}
.y104{bottom:302.361300px;}
.y69{bottom:313.329750px;}
.y97{bottom:313.607700px;}
.y166{bottom:315.455550px;}
.y37{bottom:315.785400px;}
.y136{bottom:315.894600px;}
.y23{bottom:316.063350px;}
.y101{bottom:326.540850px;}
.y68{bottom:334.029750px;}
.y96{bottom:334.307700px;}
.y165{bottom:336.155700px;}
.yff{bottom:336.440850px;}
.y36{bottom:336.485400px;}
.y135{bottom:336.594600px;}
.y22{bottom:336.763350px;}
.yfe{bottom:346.340850px;}
.y67{bottom:354.729750px;}
.y95{bottom:355.007700px;}
.y164{bottom:356.855550px;}
.y35{bottom:357.185400px;}
.y134{bottom:357.294600px;}
.y21{bottom:357.463350px;}
.y100{bottom:366.140850px;}
.y66{bottom:375.429750px;}
.y94{bottom:375.707700px;}
.y163{bottom:377.555550px;}
.y34{bottom:377.885400px;}
.y133{bottom:377.994600px;}
.y20{bottom:378.163350px;}
.yfd{bottom:393.192900px;}
.y65{bottom:396.129750px;}
.y93{bottom:396.407700px;}
.y162{bottom:398.255550px;}
.y33{bottom:398.585400px;}
.y132{bottom:398.694600px;}
.y1f{bottom:398.863350px;}
.yfc{bottom:403.092900px;}
.y64{bottom:416.829750px;}
.y92{bottom:417.107700px;}
.y161{bottom:418.955550px;}
.y32{bottom:419.285400px;}
.y131{bottom:419.394600px;}
.y1e{bottom:419.563350px;}
.y63{bottom:437.529750px;}
.y91{bottom:437.807700px;}
.y160{bottom:439.655550px;}
.y31{bottom:439.985400px;}
.yfb{bottom:440.044950px;}
.y130{bottom:440.094600px;}
.y1d{bottom:440.263350px;}
.yf9{bottom:449.944950px;}
.y62{bottom:458.229750px;}
.y90{bottom:458.507700px;}
.yf8{bottom:459.845100px;}
.y15f{bottom:460.355550px;}
.y30{bottom:460.685400px;}
.y12f{bottom:460.794600px;}
.y1c{bottom:460.963350px;}
.y61{bottom:478.929750px;}
.y8f{bottom:479.207700px;}
.yfa{bottom:479.644950px;}
.y15e{bottom:481.055550px;}
.y2f{bottom:481.385400px;}
.y12e{bottom:481.494600px;}
.y1b{bottom:481.663350px;}
.y60{bottom:499.629750px;}
.y8e{bottom:499.907700px;}
.yf6{bottom:501.580050px;}
.y15d{bottom:501.755550px;}
.y2e{bottom:502.085400px;}
.y12d{bottom:502.194600px;}
.y1a{bottom:502.363350px;}
.yf5{bottom:511.480050px;}
.y5f{bottom:520.329750px;}
.y8d{bottom:520.607700px;}
.yf7{bottom:521.380050px;}
.y15c{bottom:522.455550px;}
.y2d{bottom:522.785400px;}
.y12c{bottom:522.894600px;}
.y19{bottom:523.063350px;}
.y5e{bottom:541.029750px;}
.yf1{bottom:541.189050px;}
.y8c{bottom:541.307700px;}
.y15b{bottom:543.155550px;}
.y2c{bottom:543.485400px;}
.y12b{bottom:543.594750px;}
.y18{bottom:543.763350px;}
.yf4{bottom:551.088900px;}
.yf2{bottom:551.089050px;}
.yef{bottom:560.989050px;}
.y5d{bottom:561.729750px;}
.y8b{bottom:562.007700px;}
.y15a{bottom:563.855550px;}
.y12a{bottom:564.294600px;}
.yf3{bottom:570.889050px;}
.yf0{bottom:580.789050px;}
.y5c{bottom:582.429750px;}
.y8a{bottom:582.707700px;}
.y159{bottom:584.555550px;}
.y129{bottom:584.994750px;}
.yed{bottom:600.598050px;}
.y16{bottom:602.875350px;}
.y5b{bottom:603.129750px;}
.y89{bottom:603.407700px;}
.y158{bottom:605.255550px;}
.y128{bottom:605.694600px;}
.yec{bottom:610.498050px;}
.yee{bottom:620.398050px;}
.y15{bottom:620.875350px;}
.y183{bottom:623.812950px;}
.y5a{bottom:623.829750px;}
.y88{bottom:624.107700px;}
.y157{bottom:625.955550px;}
.y127{bottom:626.394750px;}
.y14{bottom:638.875350px;}
.yea{bottom:640.088400px;}
.ycd{bottom:642.657900px;}
.y182{bottom:644.512950px;}
.y59{bottom:644.529750px;}
.y87{bottom:644.807700px;}
.yb6{bottom:645.946950px;}
.y156{bottom:646.655550px;}
.y126{bottom:647.094750px;}
.ye9{bottom:649.988550px;}
.yeb{bottom:659.888550px;}
.ycc{bottom:663.357900px;}
.y181{bottom:665.212950px;}
.y58{bottom:665.229750px;}
.y86{bottom:665.507700px;}
.yb5{bottom:666.646950px;}
.y155{bottom:667.355550px;}
.y13{bottom:674.875350px;}
.ye8{bottom:683.219550px;}
.ycb{bottom:684.057900px;}
.y57{bottom:685.929750px;}
.y85{bottom:686.207700px;}
.yb4{bottom:687.346950px;}
.y154{bottom:688.055550px;}
.y12{bottom:692.875350px;}
.ye7{bottom:693.119550px;}
.yca{bottom:704.757900px;}
.y180{bottom:706.612950px;}
.y56{bottom:706.629750px;}
.y123{bottom:706.839450px;}
.y84{bottom:706.907700px;}
.yb3{bottom:708.046950px;}
.y153{bottom:708.755550px;}
.y122{bottom:716.739450px;}
.yc9{bottom:725.457900px;}
.ye6{bottom:726.350550px;}
.y124{bottom:726.639450px;}
.y17f{bottom:727.312950px;}
.y55{bottom:727.329750px;}
.y83{bottom:727.607700px;}
.yb2{bottom:728.746950px;}
.y11{bottom:728.875350px;}
.y152{bottom:729.455550px;}
.ye5{bottom:736.250550px;}
.yc8{bottom:746.157900px;}
.y10{bottom:746.875350px;}
.y54{bottom:748.029750px;}
.y82{bottom:748.307700px;}
.yb1{bottom:749.446950px;}
.y151{bottom:750.155550px;}
.yf{bottom:764.875350px;}
.y121{bottom:764.970900px;}
.yc7{bottom:766.857900px;}
.ye4{bottom:768.085650px;}
.y17e{bottom:768.712950px;}
.y53{bottom:768.729750px;}
.y81{bottom:769.007700px;}
.yb0{bottom:770.146950px;}
.y150{bottom:770.855550px;}
.y11f{bottom:774.870900px;}
.ye2{bottom:777.985500px;}
.ye{bottom:782.875350px;}
.y11e{bottom:784.770900px;}
.yc6{bottom:787.557900px;}
.ye1{bottom:787.885650px;}
.y17d{bottom:789.412950px;}
.y52{bottom:789.429750px;}
.y80{bottom:789.707700px;}
.yaf{bottom:790.846950px;}
.y14f{bottom:791.555550px;}
.yd{bottom:800.875350px;}
.y120{bottom:804.570900px;}
.ye3{bottom:807.685650px;}
.yc5{bottom:808.257900px;}
.y17c{bottom:810.112950px;}
.y51{bottom:810.129750px;}
.yae{bottom:811.546950px;}
.y14e{bottom:812.255550px;}
.yc{bottom:818.875350px;}
.yc4{bottom:828.957750px;}
.ye0{bottom:829.620600px;}
.y17b{bottom:830.812800px;}
.y50{bottom:830.829750px;}
.y7f{bottom:831.107700px;}
.yad{bottom:832.246950px;}
.y14d{bottom:832.955550px;}
.y11d{bottom:833.002500px;}
.yb{bottom:836.875350px;}
.ydc{bottom:839.520600px;}
.y11c{bottom:842.902500px;}
.yde{bottom:849.420450px;}
.yc3{bottom:849.657900px;}
.y17a{bottom:851.512950px;}
.y4f{bottom:851.529750px;}
.y7e{bottom:851.807700px;}
.y11b{bottom:852.802500px;}
.y14c{bottom:853.655700px;}
.ya{bottom:854.875350px;}
.ydb{bottom:859.320600px;}
.ydd{bottom:869.220450px;}
.yc2{bottom:870.357900px;}
.y179{bottom:872.212950px;}
.y4e{bottom:872.229750px;}
.y7d{bottom:872.507700px;}
.yac{bottom:873.646950px;}
.y14b{bottom:874.355550px;}
.yda{bottom:879.120600px;}
.ydf{bottom:889.020600px;}
.yc1{bottom:891.057900px;}
.y178{bottom:892.912950px;}
.y4d{bottom:892.929750px;}
.y7c{bottom:893.207700px;}
.yab{bottom:894.346950px;}
.y14a{bottom:895.055550px;}
.y9{bottom:895.727700px;}
.y11a{bottom:901.033950px;}
.y118{bottom:910.933950px;}
.yc0{bottom:911.757900px;}
.y177{bottom:913.612950px;}
.y4c{bottom:913.629750px;}
.y7b{bottom:913.907700px;}
.yaa{bottom:915.046950px;}
.y149{bottom:915.755550px;}
.y8{bottom:916.427700px;}
.y117{bottom:920.833950px;}
.y10e{bottom:922.615500px;}
.ybf{bottom:932.457750px;}
.y4b{bottom:934.329750px;}
.y7a{bottom:934.607700px;}
.ya9{bottom:935.746950px;}
.y148{bottom:936.455550px;}
.y119{bottom:940.633950px;}
.y10d{bottom:943.315500px;}
.ybe{bottom:953.157900px;}
.y176{bottom:955.012950px;}
.y4a{bottom:955.029750px;}
.y79{bottom:955.307700px;}
.ya8{bottom:956.446950px;}
.y147{bottom:957.155700px;}
.y7{bottom:961.427700px;}
.y116{bottom:966.939450px;}
.ybd{bottom:973.857900px;}
.y49{bottom:975.729750px;}
.y78{bottom:976.007700px;}
.y114{bottom:976.839450px;}
.ya7{bottom:977.146950px;}
.y146{bottom:977.855550px;}
.yd9{bottom:979.964850px;}
.y6{bottom:986.627700px;}
.y113{bottom:986.739600px;}
.ybc{bottom:994.557900px;}
.y175{bottom:996.412950px;}
.y48{bottom:996.429750px;}
.y77{bottom:996.707700px;}
.ya6{bottom:997.846950px;}
.y145{bottom:998.555550px;}
.yd8{bottom:1000.664850px;}
.y115{bottom:1006.539600px;}
.y5{bottom:1011.827700px;}
.ybb{bottom:1015.257900px;}
.y47{bottom:1017.129750px;}
.y76{bottom:1017.407700px;}
.ya5{bottom:1018.546950px;}
.y144{bottom:1019.255550px;}
.yd7{bottom:1021.364850px;}
.y112{bottom:1030.719000px;}
.yba{bottom:1035.957750px;}
.y174{bottom:1037.812800px;}
.y46{bottom:1037.829750px;}
.y75{bottom:1038.107700px;}
.ya4{bottom:1039.246950px;}
.y143{bottom:1039.955550px;}
.y110{bottom:1040.619000px;}
.yd6{bottom:1042.064700px;}
.y10f{bottom:1050.519000px;}
.yb9{bottom:1056.657900px;}
.y173{bottom:1058.512950px;}
.y45{bottom:1058.529750px;}
.y74{bottom:1058.807700px;}
.ya3{bottom:1059.946950px;}
.y142{bottom:1060.655700px;}
.y4{bottom:1062.227700px;}
.yd5{bottom:1062.764850px;}
.y111{bottom:1070.319000px;}
.yb8{bottom:1077.357900px;}
.y44{bottom:1079.229750px;}
.y73{bottom:1079.507700px;}
.ya2{bottom:1080.646950px;}
.y141{bottom:1081.355550px;}
.yd4{bottom:1083.464850px;}
.yb7{bottom:1098.057900px;}
.y172{bottom:1099.912950px;}
.y43{bottom:1099.929750px;}
.y72{bottom:1100.207700px;}
.ya1{bottom:1101.346950px;}
.y140{bottom:1102.055550px;}
.yd3{bottom:1104.164850px;}
.y125{bottom:1104.181500px;}
.y3{bottom:1110.542400px;}
.y41{bottom:1131.897750px;}
.ya0{bottom:1133.601750px;}
.y170{bottom:1133.602050px;}
.y13f{bottom:1134.452100px;}
.yd1{bottom:1134.661500px;}
.y2{bottom:1140.826950px;}
.h3{height:45.826172px;}
.h2{height:47.437500px;}
.h12{height:47.909180px;}
.h7{height:52.646484px;}
.h9{height:57.911133px;}
.h8{height:59.667480px;}
.h4{height:60.543457px;}
.h5{height:68.440430px;}
.h6{height:72.638672px;}
.hd{height:85.426172px;}
.he{height:85.426772px;}
.hf{height:97.510533px;}
.ha{height:97.511133px;}
.h10{height:97.511733px;}
.hc{height:137.111133px;}
.hb{height:137.111733px;}
.h11{height:176.711133px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:63.779550px;}
.x2{left:65.480400px;}
.x41{left:73.195650px;}
.x35{left:87.181650px;}
.xd{left:89.291400px;}
.x46{left:90.779550px;}
.x4b{left:104.067300px;}
.x10{left:106.299150px;}
.xb{left:110.551200px;}
.x17{left:118.240650px;}
.x18{left:128.759250px;}
.x16{left:130.079850px;}
.x13{left:131.811000px;}
.x27{left:133.826250px;}
.x6{left:171.749250px;}
.x28{left:173.353350px;}
.x19{left:186.150900px;}
.x7{left:189.350100px;}
.xa{left:208.469700px;}
.x4c{left:213.050550px;}
.x1a{left:218.369400px;}
.x4e{left:236.023800px;}
.x9{left:242.339700px;}
.x8{left:264.460050px;}
.x4d{left:310.342950px;}
.x5{left:312.131400px;}
.x1b{left:334.503450px;}
.x1c{left:344.646750px;}
.x32{left:358.528350px;}
.x11{left:378.883650px;}
.x44{left:380.584500px;}
.x1e{left:420.441300px;}
.x1d{left:423.237000px;}
.x3{left:431.404950px;}
.xe{left:435.826800px;}
.x1f{left:437.090400px;}
.x4{left:439.324950px;}
.xf{left:461.338650px;}
.x47{left:462.826800px;}
.x43{left:471.608550px;}
.x15{left:478.346400px;}
.x3a{left:483.034500px;}
.x12{left:493.015650px;}
.x45{left:501.732300px;}
.x14{left:503.858250px;}
.x49{left:505.346400px;}
.x21{left:514.766250px;}
.x29{left:525.554100px;}
.x20{left:527.495700px;}
.x3f{left:547.834950px;}
.x36{left:566.377350px;}
.x4a{left:573.584550px;}
.x37{left:575.380650px;}
.x3d{left:576.484350px;}
.x3c{left:582.160200px;}
.x38{left:586.752600px;}
.x3b{left:592.069950px;}
.x23{left:606.947100px;}
.x33{left:608.896800px;}
.x24{left:615.817500px;}
.x2c{left:617.316000px;}
.x2b{left:619.588050px;}
.x2e{left:624.148050px;}
.x30{left:625.380750px;}
.x31{left:627.149250px;}
.x2a{left:630.259050px;}
.x2f{left:634.057800px;}
.x40{left:639.618600px;}
.x22{left:644.845650px;}
.x42{left:710.405250px;}
.x3e{left:735.232650px;}
.x39{left:737.665650px;}
.x25{left:757.078800px;}
.x26{left:764.217000px;}
.x1{left:766.985550px;}
.x34{left:777.438000px;}
.x2d{left:780.185250px;}
.x48{left:786.614250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:35.200000pt;}
.v2{vertical-align:70.400533pt;}
.v3{vertical-align:105.600000pt;}
.ls17{letter-spacing:-4.906667pt;}
.lsf{letter-spacing:-4.400000pt;}
.ls2{letter-spacing:-2.453333pt;}
.ls10{letter-spacing:-2.170667pt;}
.ls1d{letter-spacing:-0.920000pt;}
.ls4{letter-spacing:-0.858667pt;}
.lse{letter-spacing:-0.762667pt;}
.ls5{letter-spacing:-0.429333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000533pt;}
.ls14{letter-spacing:0.000554pt;}
.ls9{letter-spacing:0.000575pt;}
.ls1f{letter-spacing:0.010133pt;}
.ls1e{letter-spacing:0.010667pt;}
.ls0{letter-spacing:0.429333pt;}
.lsc{letter-spacing:2.621176pt;}
.ls8{letter-spacing:3.830588pt;}
.ls7{letter-spacing:4.290196pt;}
.ls1b{letter-spacing:5.085867pt;}
.ls1a{letter-spacing:5.949333pt;}
.ls15{letter-spacing:6.630653pt;}
.ls11{letter-spacing:9.035294pt;}
.ls1c{letter-spacing:14.136000pt;}
.lsa{letter-spacing:15.299869pt;}
.ls12{letter-spacing:17.134118pt;}
.ls3{letter-spacing:19.437411pt;}
.ls18{letter-spacing:22.080000pt;}
.ls13{letter-spacing:23.610458pt;}
.ls16{letter-spacing:27.642337pt;}
.ls19{letter-spacing:27.661333pt;}
.lsb{letter-spacing:34.840784pt;}
.lsd{letter-spacing:111.207467pt;}
.ws19{word-spacing:-27.661333pt;}
.ws18{word-spacing:-22.080000pt;}
.ws1{word-spacing:-15.333333pt;}
.ws9{word-spacing:-14.666667pt;}
.ws8{word-spacing:-13.904000pt;}
.ws7{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.880000pt;}
.ws17{word-spacing:-10.426667pt;}
.ws1a{word-spacing:-5.949333pt;}
.ws3{word-spacing:-0.429333pt;}
.ws6{word-spacing:-0.061333pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.429333pt;}
.ws4{word-spacing:0.858667pt;}
.ws1b{word-spacing:0.920000pt;}
.ws12{word-spacing:81.874133pt;}
.ws13{word-spacing:87.297600pt;}
.ws16{word-spacing:137.317333pt;}
.wsb{word-spacing:199.667733pt;}
.ws15{word-spacing:199.668267pt;}
.ws11{word-spacing:232.071467pt;}
.wsd{word-spacing:238.102400pt;}
.wsc{word-spacing:246.587733pt;}
.ws14{word-spacing:262.726400pt;}
.wsf{word-spacing:277.925333pt;}
.ws10{word-spacing:282.940800pt;}
.wse{word-spacing:292.708800pt;}
.wsa{word-spacing:302.273067pt;}
._41{margin-left:-28.206895pt;}
._40{margin-left:-22.756795pt;}
._42{margin-left:-15.878482pt;}
._1d{margin-left:-14.865089pt;}
._3e{margin-left:-11.048000pt;}
._6{margin-left:-9.549867pt;}
._3{margin-left:-7.813867pt;}
._19{margin-left:-6.912267pt;}
._5{margin-left:-5.405867pt;}
._8{margin-left:-4.409600pt;}
._7{margin-left:-3.451200pt;}
._0{margin-left:-2.223467pt;}
._4{margin-left:-0.908267pt;}
._1{width:1.478400pt;}
._2{width:2.465600pt;}
._d{width:3.662933pt;}
._17{width:5.142133pt;}
._1a{width:6.481067pt;}
._b{width:7.829333pt;}
._9{width:8.730667pt;}
._10{width:9.656533pt;}
._c{width:10.869333pt;}
._a{width:11.765333pt;}
._12{width:12.745067pt;}
._16{width:14.012267pt;}
._21{width:16.288000pt;}
._14{width:17.795200pt;}
._15{width:18.977867pt;}
._1c{width:20.421067pt;}
._18{width:21.540000pt;}
._13{width:23.355733pt;}
._22{width:24.312533pt;}
._1e{width:25.302933pt;}
._20{width:26.422667pt;}
._1b{width:28.132000pt;}
._11{width:29.108800pt;}
._3d{width:30.343467pt;}
._45{width:31.277067pt;}
._e{width:32.747200pt;}
._f{width:33.743467pt;}
._24{width:35.048000pt;}
._25{width:36.646667pt;}
._3f{width:37.547733pt;}
._43{width:38.484800pt;}
._4c{width:39.465067pt;}
._44{width:40.644533pt;}
._29{width:43.838133pt;}
._28{width:45.257867pt;}
._1f{width:46.686933pt;}
._4a{width:48.540267pt;}
._49{width:49.474667pt;}
._47{width:50.833067pt;}
._27{width:52.507467pt;}
._4b{width:54.489067pt;}
._46{width:60.609600pt;}
._48{width:62.378400pt;}
._23{width:86.136533pt;}
._26{width:128.560533pt;}
._3a{width:149.692267pt;}
._2d{width:181.704000pt;}
._2c{width:213.475733pt;}
._3c{width:240.011200pt;}
._31{width:241.902933pt;}
._38{width:255.406933pt;}
._39{width:256.495467pt;}
._2a{width:272.828267pt;}
._32{width:282.316267pt;}
._30{width:286.636267pt;}
._34{width:291.072000pt;}
._37{width:311.210667pt;}
._3b{width:321.288800pt;}
._2f{width:336.431467pt;}
._35{width:339.130133pt;}
._36{width:340.218667pt;}
._33{width:353.796800pt;}
._2e{width:378.260800pt;}
._2b{width:406.010133pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:61.333333pt;}
.fs2{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:98.645067pt;}
.y1{bottom:98.739600pt;}
.y16f{bottom:99.989600pt;}
.y171{bottom:99.990000pt;}
.y42{bottom:100.745600pt;}
.y17{bottom:101.312400pt;}
.yd2{bottom:103.202267pt;}
.yd0{bottom:129.211867pt;}
.y71{bottom:131.315333pt;}
.y9f{bottom:131.562400pt;}
.y16e{bottom:133.204933pt;}
.y3f{bottom:133.498133pt;}
.y13e{bottom:133.595200pt;}
.y2b{bottom:133.745200pt;}
.y10b{bottom:142.374800pt;}
.ycf{bottom:145.211867pt;}
.y70{bottom:149.715333pt;}
.y9e{bottom:149.962400pt;}
.y10a{bottom:151.174800pt;}
.y16d{bottom:151.604933pt;}
.y3e{bottom:151.898133pt;}
.y13d{bottom:151.995200pt;}
.y2a{bottom:152.145200pt;}
.y10c{bottom:159.974800pt;}
.yce{bottom:161.211867pt;}
.y6f{bottom:168.115333pt;}
.y9d{bottom:168.362400pt;}
.y16c{bottom:170.004933pt;}
.y3d{bottom:170.298133pt;}
.y13c{bottom:170.395200pt;}
.y29{bottom:170.545200pt;}
.y109{bottom:178.762400pt;}
.y6e{bottom:186.515333pt;}
.y9c{bottom:186.762400pt;}
.y107{bottom:187.562400pt;}
.y16b{bottom:188.404933pt;}
.y3c{bottom:188.698133pt;}
.y13b{bottom:188.795200pt;}
.y28{bottom:188.945200pt;}
.y106{bottom:196.362400pt;}
.y6d{bottom:204.915333pt;}
.y9b{bottom:205.162400pt;}
.y16a{bottom:206.805067pt;}
.y3b{bottom:207.098133pt;}
.y13a{bottom:207.195200pt;}
.y27{bottom:207.345200pt;}
.y108{bottom:213.962400pt;}
.y6c{bottom:223.315333pt;}
.y9a{bottom:223.562400pt;}
.y169{bottom:225.204933pt;}
.y3a{bottom:225.498133pt;}
.y139{bottom:225.595200pt;}
.y26{bottom:225.745200pt;}
.y105{bottom:233.565600pt;}
.y6b{bottom:241.715333pt;}
.y99{bottom:241.962400pt;}
.y103{bottom:242.365600pt;}
.y168{bottom:243.604933pt;}
.y39{bottom:243.898133pt;}
.y138{bottom:243.995200pt;}
.y25{bottom:244.145200pt;}
.y102{bottom:251.165600pt;}
.y6a{bottom:260.115333pt;}
.y98{bottom:260.362400pt;}
.y167{bottom:262.004933pt;}
.y38{bottom:262.298133pt;}
.y137{bottom:262.395200pt;}
.y24{bottom:262.545200pt;}
.y104{bottom:268.765600pt;}
.y69{bottom:278.515333pt;}
.y97{bottom:278.762400pt;}
.y166{bottom:280.404933pt;}
.y37{bottom:280.698133pt;}
.y136{bottom:280.795200pt;}
.y23{bottom:280.945200pt;}
.y101{bottom:290.258533pt;}
.y68{bottom:296.915333pt;}
.y96{bottom:297.162400pt;}
.y165{bottom:298.805067pt;}
.yff{bottom:299.058533pt;}
.y36{bottom:299.098133pt;}
.y135{bottom:299.195200pt;}
.y22{bottom:299.345200pt;}
.yfe{bottom:307.858533pt;}
.y67{bottom:315.315333pt;}
.y95{bottom:315.562400pt;}
.y164{bottom:317.204933pt;}
.y35{bottom:317.498133pt;}
.y134{bottom:317.595200pt;}
.y21{bottom:317.745200pt;}
.y100{bottom:325.458533pt;}
.y66{bottom:333.715333pt;}
.y94{bottom:333.962400pt;}
.y163{bottom:335.604933pt;}
.y34{bottom:335.898133pt;}
.y133{bottom:335.995200pt;}
.y20{bottom:336.145200pt;}
.yfd{bottom:349.504800pt;}
.y65{bottom:352.115333pt;}
.y93{bottom:352.362400pt;}
.y162{bottom:354.004933pt;}
.y33{bottom:354.298133pt;}
.y132{bottom:354.395200pt;}
.y1f{bottom:354.545200pt;}
.yfc{bottom:358.304800pt;}
.y64{bottom:370.515333pt;}
.y92{bottom:370.762400pt;}
.y161{bottom:372.404933pt;}
.y32{bottom:372.698133pt;}
.y131{bottom:372.795200pt;}
.y1e{bottom:372.945200pt;}
.y63{bottom:388.915333pt;}
.y91{bottom:389.162400pt;}
.y160{bottom:390.804933pt;}
.y31{bottom:391.098133pt;}
.yfb{bottom:391.151067pt;}
.y130{bottom:391.195200pt;}
.y1d{bottom:391.345200pt;}
.yf9{bottom:399.951067pt;}
.y62{bottom:407.315333pt;}
.y90{bottom:407.562400pt;}
.yf8{bottom:408.751200pt;}
.y15f{bottom:409.204933pt;}
.y30{bottom:409.498133pt;}
.y12f{bottom:409.595200pt;}
.y1c{bottom:409.745200pt;}
.y61{bottom:425.715333pt;}
.y8f{bottom:425.962400pt;}
.yfa{bottom:426.351067pt;}
.y15e{bottom:427.604933pt;}
.y2f{bottom:427.898133pt;}
.y12e{bottom:427.995200pt;}
.y1b{bottom:428.145200pt;}
.y60{bottom:444.115333pt;}
.y8e{bottom:444.362400pt;}
.yf6{bottom:445.848933pt;}
.y15d{bottom:446.004933pt;}
.y2e{bottom:446.298133pt;}
.y12d{bottom:446.395200pt;}
.y1a{bottom:446.545200pt;}
.yf5{bottom:454.648933pt;}
.y5f{bottom:462.515333pt;}
.y8d{bottom:462.762400pt;}
.yf7{bottom:463.448933pt;}
.y15c{bottom:464.404933pt;}
.y2d{bottom:464.698133pt;}
.y12c{bottom:464.795200pt;}
.y19{bottom:464.945200pt;}
.y5e{bottom:480.915333pt;}
.yf1{bottom:481.056933pt;}
.y8c{bottom:481.162400pt;}
.y15b{bottom:482.804933pt;}
.y2c{bottom:483.098133pt;}
.y12b{bottom:483.195333pt;}
.y18{bottom:483.345200pt;}
.yf4{bottom:489.856800pt;}
.yf2{bottom:489.856933pt;}
.yef{bottom:498.656933pt;}
.y5d{bottom:499.315333pt;}
.y8b{bottom:499.562400pt;}
.y15a{bottom:501.204933pt;}
.y12a{bottom:501.595200pt;}
.yf3{bottom:507.456933pt;}
.yf0{bottom:516.256933pt;}
.y5c{bottom:517.715333pt;}
.y8a{bottom:517.962400pt;}
.y159{bottom:519.604933pt;}
.y129{bottom:519.995333pt;}
.yed{bottom:533.864933pt;}
.y16{bottom:535.889200pt;}
.y5b{bottom:536.115333pt;}
.y89{bottom:536.362400pt;}
.y158{bottom:538.004933pt;}
.y128{bottom:538.395200pt;}
.yec{bottom:542.664933pt;}
.yee{bottom:551.464933pt;}
.y15{bottom:551.889200pt;}
.y183{bottom:554.500400pt;}
.y5a{bottom:554.515333pt;}
.y88{bottom:554.762400pt;}
.y157{bottom:556.404933pt;}
.y127{bottom:556.795333pt;}
.y14{bottom:567.889200pt;}
.yea{bottom:568.967467pt;}
.ycd{bottom:571.251467pt;}
.y182{bottom:572.900400pt;}
.y59{bottom:572.915333pt;}
.y87{bottom:573.162400pt;}
.yb6{bottom:574.175067pt;}
.y156{bottom:574.804933pt;}
.y126{bottom:575.195333pt;}
.ye9{bottom:577.767600pt;}
.yeb{bottom:586.567600pt;}
.ycc{bottom:589.651467pt;}
.y181{bottom:591.300400pt;}
.y58{bottom:591.315333pt;}
.y86{bottom:591.562400pt;}
.yb5{bottom:592.575067pt;}
.y155{bottom:593.204933pt;}
.y13{bottom:599.889200pt;}
.ye8{bottom:607.306267pt;}
.ycb{bottom:608.051467pt;}
.y57{bottom:609.715333pt;}
.y85{bottom:609.962400pt;}
.yb4{bottom:610.975067pt;}
.y154{bottom:611.604933pt;}
.y12{bottom:615.889200pt;}
.ye7{bottom:616.106267pt;}
.yca{bottom:626.451467pt;}
.y180{bottom:628.100400pt;}
.y56{bottom:628.115333pt;}
.y123{bottom:628.301733pt;}
.y84{bottom:628.362400pt;}
.yb3{bottom:629.375067pt;}
.y153{bottom:630.004933pt;}
.y122{bottom:637.101733pt;}
.yc9{bottom:644.851467pt;}
.ye6{bottom:645.644933pt;}
.y124{bottom:645.901733pt;}
.y17f{bottom:646.500400pt;}
.y55{bottom:646.515333pt;}
.y83{bottom:646.762400pt;}
.yb2{bottom:647.775067pt;}
.y11{bottom:647.889200pt;}
.y152{bottom:648.404933pt;}
.ye5{bottom:654.444933pt;}
.yc8{bottom:663.251467pt;}
.y10{bottom:663.889200pt;}
.y54{bottom:664.915333pt;}
.y82{bottom:665.162400pt;}
.yb1{bottom:666.175067pt;}
.y151{bottom:666.804933pt;}
.yf{bottom:679.889200pt;}
.y121{bottom:679.974133pt;}
.yc7{bottom:681.651467pt;}
.ye4{bottom:682.742800pt;}
.y17e{bottom:683.300400pt;}
.y53{bottom:683.315333pt;}
.y81{bottom:683.562400pt;}
.yb0{bottom:684.575067pt;}
.y150{bottom:685.204933pt;}
.y11f{bottom:688.774133pt;}
.ye2{bottom:691.542667pt;}
.ye{bottom:695.889200pt;}
.y11e{bottom:697.574133pt;}
.yc6{bottom:700.051467pt;}
.ye1{bottom:700.342800pt;}
.y17d{bottom:701.700400pt;}
.y52{bottom:701.715333pt;}
.y80{bottom:701.962400pt;}
.yaf{bottom:702.975067pt;}
.y14f{bottom:703.604933pt;}
.yd{bottom:711.889200pt;}
.y120{bottom:715.174133pt;}
.ye3{bottom:717.942800pt;}
.yc5{bottom:718.451467pt;}
.y17c{bottom:720.100400pt;}
.y51{bottom:720.115333pt;}
.yae{bottom:721.375067pt;}
.y14e{bottom:722.004933pt;}
.yc{bottom:727.889200pt;}
.yc4{bottom:736.851333pt;}
.ye0{bottom:737.440533pt;}
.y17b{bottom:738.500267pt;}
.y50{bottom:738.515333pt;}
.y7f{bottom:738.762400pt;}
.yad{bottom:739.775067pt;}
.y14d{bottom:740.404933pt;}
.y11d{bottom:740.446667pt;}
.yb{bottom:743.889200pt;}
.ydc{bottom:746.240533pt;}
.y11c{bottom:749.246667pt;}
.yde{bottom:755.040400pt;}
.yc3{bottom:755.251467pt;}
.y17a{bottom:756.900400pt;}
.y4f{bottom:756.915333pt;}
.y7e{bottom:757.162400pt;}
.y11b{bottom:758.046667pt;}
.y14c{bottom:758.805067pt;}
.ya{bottom:759.889200pt;}
.ydb{bottom:763.840533pt;}
.ydd{bottom:772.640400pt;}
.yc2{bottom:773.651467pt;}
.y179{bottom:775.300400pt;}
.y4e{bottom:775.315333pt;}
.y7d{bottom:775.562400pt;}
.yac{bottom:776.575067pt;}
.y14b{bottom:777.204933pt;}
.yda{bottom:781.440533pt;}
.ydf{bottom:790.240533pt;}
.yc1{bottom:792.051467pt;}
.y178{bottom:793.700400pt;}
.y4d{bottom:793.715333pt;}
.y7c{bottom:793.962400pt;}
.yab{bottom:794.975067pt;}
.y14a{bottom:795.604933pt;}
.y9{bottom:796.202400pt;}
.y11a{bottom:800.919067pt;}
.y118{bottom:809.719067pt;}
.yc0{bottom:810.451467pt;}
.y177{bottom:812.100400pt;}
.y4c{bottom:812.115333pt;}
.y7b{bottom:812.362400pt;}
.yaa{bottom:813.375067pt;}
.y149{bottom:814.004933pt;}
.y8{bottom:814.602400pt;}
.y117{bottom:818.519067pt;}
.y10e{bottom:820.102667pt;}
.ybf{bottom:828.851333pt;}
.y4b{bottom:830.515333pt;}
.y7a{bottom:830.762400pt;}
.ya9{bottom:831.775067pt;}
.y148{bottom:832.404933pt;}
.y119{bottom:836.119067pt;}
.y10d{bottom:838.502667pt;}
.ybe{bottom:847.251467pt;}
.y176{bottom:848.900400pt;}
.y4a{bottom:848.915333pt;}
.y79{bottom:849.162400pt;}
.ya8{bottom:850.175067pt;}
.y147{bottom:850.805067pt;}
.y7{bottom:854.602400pt;}
.y116{bottom:859.501733pt;}
.ybd{bottom:865.651467pt;}
.y49{bottom:867.315333pt;}
.y78{bottom:867.562400pt;}
.y114{bottom:868.301733pt;}
.ya7{bottom:868.575067pt;}
.y146{bottom:869.204933pt;}
.yd9{bottom:871.079867pt;}
.y6{bottom:877.002400pt;}
.y113{bottom:877.101867pt;}
.ybc{bottom:884.051467pt;}
.y175{bottom:885.700400pt;}
.y48{bottom:885.715333pt;}
.y77{bottom:885.962400pt;}
.ya6{bottom:886.975067pt;}
.y145{bottom:887.604933pt;}
.yd8{bottom:889.479867pt;}
.y115{bottom:894.701867pt;}
.y5{bottom:899.402400pt;}
.ybb{bottom:902.451467pt;}
.y47{bottom:904.115333pt;}
.y76{bottom:904.362400pt;}
.ya5{bottom:905.375067pt;}
.y144{bottom:906.004933pt;}
.yd7{bottom:907.879867pt;}
.y112{bottom:916.194667pt;}
.yba{bottom:920.851333pt;}
.y174{bottom:922.500267pt;}
.y46{bottom:922.515333pt;}
.y75{bottom:922.762400pt;}
.ya4{bottom:923.775067pt;}
.y143{bottom:924.404933pt;}
.y110{bottom:924.994667pt;}
.yd6{bottom:926.279733pt;}
.y10f{bottom:933.794667pt;}
.yb9{bottom:939.251467pt;}
.y173{bottom:940.900400pt;}
.y45{bottom:940.915333pt;}
.y74{bottom:941.162400pt;}
.ya3{bottom:942.175067pt;}
.y142{bottom:942.805067pt;}
.y4{bottom:944.202400pt;}
.yd5{bottom:944.679867pt;}
.y111{bottom:951.394667pt;}
.yb8{bottom:957.651467pt;}
.y44{bottom:959.315333pt;}
.y73{bottom:959.562400pt;}
.ya2{bottom:960.575067pt;}
.y141{bottom:961.204933pt;}
.yd4{bottom:963.079867pt;}
.yb7{bottom:976.051467pt;}
.y172{bottom:977.700400pt;}
.y43{bottom:977.715333pt;}
.y72{bottom:977.962400pt;}
.ya1{bottom:978.975067pt;}
.y140{bottom:979.604933pt;}
.yd3{bottom:981.479867pt;}
.y125{bottom:981.494667pt;}
.y3{bottom:987.148800pt;}
.y41{bottom:1006.131333pt;}
.ya0{bottom:1007.646000pt;}
.y170{bottom:1007.646267pt;}
.y13f{bottom:1008.401867pt;}
.yd1{bottom:1008.588000pt;}
.y2{bottom:1014.068400pt;}
.h3{height:40.734375pt;}
.h2{height:42.166667pt;}
.h12{height:42.585938pt;}
.h7{height:46.796875pt;}
.h9{height:51.476562pt;}
.h8{height:53.037760pt;}
.h4{height:53.816406pt;}
.h5{height:60.835938pt;}
.h6{height:64.567708pt;}
.hd{height:75.934375pt;}
.he{height:75.934908pt;}
.hf{height:86.676029pt;}
.ha{height:86.676562pt;}
.h10{height:86.677096pt;}
.hc{height:121.876562pt;}
.hb{height:121.877096pt;}
.h11{height:157.076563pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:56.692933pt;}
.x2{left:58.204800pt;}
.x41{left:65.062800pt;}
.x35{left:77.494800pt;}
.xd{left:79.370133pt;}
.x46{left:80.692933pt;}
.x4b{left:92.504267pt;}
.x10{left:94.488133pt;}
.xb{left:98.267733pt;}
.x17{left:105.102800pt;}
.x18{left:114.452667pt;}
.x16{left:115.626533pt;}
.x13{left:117.165333pt;}
.x27{left:118.956667pt;}
.x6{left:152.666000pt;}
.x28{left:154.091867pt;}
.x19{left:165.467467pt;}
.x7{left:168.311200pt;}
.xa{left:185.306400pt;}
.x4c{left:189.378267pt;}
.x1a{left:194.106133pt;}
.x4e{left:209.798933pt;}
.x9{left:215.413067pt;}
.x8{left:235.075600pt;}
.x4d{left:275.860400pt;}
.x5{left:277.450133pt;}
.x1b{left:297.336400pt;}
.x1c{left:306.352667pt;}
.x32{left:318.691867pt;}
.x11{left:336.785467pt;}
.x44{left:338.297333pt;}
.x1e{left:373.725600pt;}
.x1d{left:376.210667pt;}
.x3{left:383.471067pt;}
.xe{left:387.401600pt;}
.x1f{left:388.524800pt;}
.x4{left:390.511067pt;}
.xf{left:410.078800pt;}
.x47{left:411.401600pt;}
.x43{left:419.207600pt;}
.x15{left:425.196800pt;}
.x3a{left:429.364000pt;}
.x12{left:438.236133pt;}
.x45{left:445.984267pt;}
.x14{left:447.874000pt;}
.x49{left:449.196800pt;}
.x21{left:457.570000pt;}
.x29{left:467.159200pt;}
.x20{left:468.885067pt;}
.x3f{left:486.964400pt;}
.x36{left:503.446533pt;}
.x4a{left:509.852933pt;}
.x37{left:511.449467pt;}
.x3d{left:512.430533pt;}
.x3c{left:517.475733pt;}
.x38{left:521.557867pt;}
.x3b{left:526.284400pt;}
.x23{left:539.508533pt;}
.x33{left:541.241600pt;}
.x24{left:547.393333pt;}
.x2c{left:548.725333pt;}
.x2b{left:550.744933pt;}
.x2e{left:554.798267pt;}
.x30{left:555.894000pt;}
.x31{left:557.466000pt;}
.x2a{left:560.230267pt;}
.x2f{left:563.606933pt;}
.x40{left:568.549867pt;}
.x22{left:573.196133pt;}
.x42{left:631.471333pt;}
.x3e{left:653.540133pt;}
.x39{left:655.702800pt;}
.x25{left:672.958933pt;}
.x26{left:679.304000pt;}
.x1{left:681.764933pt;}
.x34{left:691.056000pt;}
.x2d{left:693.498000pt;}
.x48{left:699.212667pt;}
}




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