
    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_199c49b60167d61d1ce23ccd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912308;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_5e7e4195f2a5dd8a914ea7f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_466ae6037e9aa6d0467a0c5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104492;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_3fb9d311731a5693cfac4d8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_9782f66f33129dd1df4fea5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_34ff08e55a374cbe45a2aba3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_6576f000a455714b485f7b1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_98c2c38074c72ce7f1f3b603.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.781000;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_199c49b60167d61d1ce23ccd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912308;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_ca9cb6173b054a842ab50c44.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.890137;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_d1447d73ca9d78292f0b7dee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.849609;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:ffc;src:url('chunks/assets/font_98c2c38074c72ce7f1f3b603.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.781000;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:ffd;src:url('chunks/assets/font_199c49b60167d61d1ce23ccd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912308;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:ffe;src:url('chunks/assets/font_98c2c38074c72ce7f1f3b603.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.781000;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:fff;src:url('chunks/assets/font_199c49b60167d61d1ce23ccd.woff2')format("woff");}.fff{font-family:fff;line-height:0.912308;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:ff10;src:url('chunks/assets/font_98c2c38074c72ce7f1f3b603.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.781000;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:ff11;src:url('chunks/assets/font_199c49b60167d61d1ce23ccd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.912308;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:ff12;src:url('chunks/assets/font_4fb90de60faf5b0d60b30b84.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.689453;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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:2.100000px;}
.ls0{letter-spacing:3.360000px;}
.ls1{letter-spacing:5.670000px;}
.ls4{letter-spacing:8.640000px;}
.ls3{letter-spacing:10.800000px;}
.ls8{letter-spacing:14.400000px;}
.ls5{letter-spacing:27.000000px;}
.ls6{letter-spacing:57.600000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(38,122,200),0 0.015em rgb(38,122,200),0.015em 0 rgb(38,122,200),0 -0.015em  rgb(38,122,200);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(38,122,200);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-120.960000px;}
.ws1{word-spacing:-85.889990px;}
.ws0{word-spacing:-60.151750px;}
.ws13{word-spacing:-30.240000px;}
.ws9{word-spacing:-27.000000px;}
.ws6{word-spacing:-25.812000px;}
.ws16{word-spacing:-20.016000px;}
.ws8{word-spacing:-18.780000px;}
.wsc{word-spacing:-16.680000px;}
.wsd{word-spacing:-15.012000px;}
.wsf{word-spacing:-14.400000px;}
.ws17{word-spacing:-3.960000px;}
.wse{word-spacing:-3.510000px;}
.ws4{word-spacing:-3.360000px;}
.ws5{word-spacing:-2.754000px;}
.ws10{word-spacing:-2.220000px;}
.wsa{word-spacing:-2.100000px;}
.ws15{word-spacing:-1.998000px;}
.wsb{word-spacing:-1.776000px;}
.ws3{word-spacing:-1.632000px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:1.800000px;}
.ws12{word-spacing:5.040000px;}
.ws14{word-spacing:8.640000px;}
._27{margin-left:-880.344000px;}
._9{margin-left:-709.487723px;}
._a{margin-left:-687.119923px;}
._23{margin-left:-648.144000px;}
._28{margin-left:-544.207200px;}
._24{margin-left:-504.180600px;}
._26{margin-left:-468.390000px;}
._25{margin-left:-360.000000px;}
._12{margin-left:-16.516200px;}
._15{margin-left:-15.081600px;}
._b{margin-left:-13.296000px;}
._c{margin-left:-10.800000px;}
._3{margin-left:-8.793600px;}
._2{margin-left:-7.152000px;}
._5{margin-left:-5.366400px;}
._4{margin-left:-4.027200px;}
._0{margin-left:-2.664000px;}
._1{margin-left:-1.516800px;}
._8{width:1.060800px;}
._6{width:2.289600px;}
._7{width:4.171200px;}
._19{width:5.640600px;}
._18{width:6.642000px;}
._1c{width:7.956000px;}
._11{width:9.246000px;}
._14{width:10.338000px;}
._13{width:11.607600px;}
._17{width:13.575600px;}
._1f{width:15.102000px;}
._16{width:18.593400px;}
._21{width:19.686000px;}
._1a{width:21.042000px;}
._1b{width:22.362000px;}
._d{width:25.002000px;}
._10{width:27.000000px;}
._1e{width:28.116000px;}
._20{width:30.240000px;}
._1d{width:45.224400px;}
._22{width:59.007000px;}
._f{width:105.438600px;}
._e{width:1245.778800px;}
.fce{color:rgb(246,131,19);}
.fcd{color:rgb(0,173,239);}
.fc1{color:rgb(35,31,32);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(78,79,170);}
.fc3{color:rgb(42,62,146);}
.fc4{color:rgb(210,32,39);}
.fc8{color:rgb(38,122,200);}
.fc7{color:rgb(66,178,60);}
.fc9{color:rgb(152,169,221);}
.fc0{color:rgb(53,66,160);}
.fca{color:rgb(47,92,179);}
.fcc{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fcb{color:rgb(112,48,160);}
.fs8{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fsd{font-size:126.000000px;}
.fsb{font-size:144.000000px;}
.fs3{font-size:162.000000px;}
.fs9{font-size:180.000000px;}
.fs4{font-size:216.373200px;}
.fsa{font-size:288.000000px;}
.fs5{font-size:308.956800px;}
.y0{bottom:0.000000px;}
.y2{bottom:54.191250px;}
.y1{bottom:75.791250px;}
.y70{bottom:78.581550px;}
.ya5{bottom:119.296200px;}
.y43{bottom:127.558950px;}
.y147{bottom:128.119050px;}
.y71{bottom:132.431250px;}
.ya4{bottom:136.846200px;}
.y6e{bottom:141.403650px;}
.y17{bottom:143.777700px;}
.y42{bottom:145.558950px;}
.y10f{bottom:146.118900px;}
.y146{bottom:146.119050px;}
.yd7{bottom:151.936500px;}
.ya3{bottom:154.396050px;}
.y6d{bottom:159.403650px;}
.y41{bottom:163.558950px;}
.y10e{bottom:164.118900px;}
.y145{bottom:164.119050px;}
.yd6{bottom:169.936500px;}
.ya2{bottom:176.198100px;}
.y6c{bottom:177.403650px;}
.y40{bottom:181.558950px;}
.y10d{bottom:182.118900px;}
.y144{bottom:182.119050px;}
.yd5{bottom:187.936500px;}
.ya1{bottom:193.748100px;}
.y6b{bottom:195.403650px;}
.y3f{bottom:199.558950px;}
.y10c{bottom:200.118900px;}
.y143{bottom:200.119050px;}
.yd4{bottom:205.936500px;}
.y12{bottom:207.582300px;}
.ya0{bottom:211.298100px;}
.y6a{bottom:213.403650px;}
.y3e{bottom:217.558950px;}
.y10b{bottom:218.118900px;}
.y142{bottom:218.119050px;}
.yd3{bottom:223.936500px;}
.y69{bottom:231.403650px;}
.y9f{bottom:233.100000px;}
.y3d{bottom:235.558950px;}
.y10a{bottom:236.118900px;}
.y141{bottom:236.119050px;}
.y11{bottom:236.382300px;}
.yd2{bottom:241.936500px;}
.y68{bottom:249.403650px;}
.y9e{bottom:250.650000px;}
.y3c{bottom:253.558950px;}
.y109{bottom:254.118900px;}
.y140{bottom:254.119050px;}
.yd1{bottom:259.936500px;}
.y10{bottom:265.182150px;}
.y67{bottom:267.403650px;}
.y3b{bottom:271.558950px;}
.y108{bottom:272.118900px;}
.y13f{bottom:272.119050px;}
.y9d{bottom:272.452050px;}
.yd0{bottom:277.936500px;}
.y66{bottom:285.403650px;}
.y3a{bottom:289.558950px;}
.y9c{bottom:290.002050px;}
.y107{bottom:290.118900px;}
.y13e{bottom:290.119050px;}
.yf{bottom:293.982300px;}
.y166{bottom:302.845350px;}
.y65{bottom:303.403650px;}
.ycf{bottom:304.440450px;}
.y9b{bottom:307.552050px;}
.y39{bottom:307.558950px;}
.y106{bottom:308.118900px;}
.y13d{bottom:308.119050px;}
.y165{bottom:320.845350px;}
.y64{bottom:321.403650px;}
.ye{bottom:322.782300px;}
.y9a{bottom:325.102050px;}
.y38{bottom:325.558950px;}
.y105{bottom:326.118900px;}
.y13c{bottom:326.119050px;}
.y37{bottom:343.558950px;}
.yce{bottom:344.040450px;}
.y104{bottom:344.118900px;}
.y13b{bottom:344.119050px;}
.y99{bottom:346.903950px;}
.yd{bottom:351.582300px;}
.y16f{bottom:355.244250px;}
.y36{bottom:361.558950px;}
.ycd{bottom:362.040450px;}
.y103{bottom:362.118900px;}
.y13a{bottom:362.119050px;}
.y98{bottom:364.453950px;}
.y16e{bottom:375.044250px;}
.y35{bottom:379.558950px;}
.y102{bottom:380.118900px;}
.y139{bottom:380.119050px;}
.y97{bottom:382.003950px;}
.ycc{bottom:388.544400px;}
.y16d{bottom:394.844250px;}
.y34{bottom:397.558950px;}
.y101{bottom:398.118900px;}
.y138{bottom:398.119050px;}
.yc{bottom:399.453150px;}
.y63{bottom:402.176550px;}
.y96{bottom:403.806000px;}
.ycb{bottom:406.544400px;}
.y16c{bottom:414.644250px;}
.y33{bottom:415.558950px;}
.y100{bottom:416.118900px;}
.y137{bottom:416.119050px;}
.y62{bottom:420.176550px;}
.y95{bottom:421.356000px;}
.yca{bottom:424.544400px;}
.yb{bottom:428.253150px;}
.y32{bottom:433.558950px;}
.yff{bottom:434.118900px;}
.y136{bottom:434.119050px;}
.y16b{bottom:434.444250px;}
.y61{bottom:438.176550px;}
.y94{bottom:438.906000px;}
.yc9{bottom:442.544400px;}
.y31{bottom:451.558950px;}
.yfe{bottom:452.118900px;}
.y135{bottom:452.119050px;}
.y60{bottom:456.176550px;}
.ya{bottom:457.053150px;}
.yc8{bottom:460.544400px;}
.y93{bottom:460.707900px;}
.y30{bottom:469.558950px;}
.yfd{bottom:470.118900px;}
.y134{bottom:470.119050px;}
.y5f{bottom:474.176550px;}
.y92{bottom:478.257900px;}
.yc7{bottom:478.544400px;}
.y9{bottom:485.853150px;}
.y2f{bottom:487.559100px;}
.yfc{bottom:488.118900px;}
.y133{bottom:488.119050px;}
.y5e{bottom:492.176550px;}
.y91{bottom:495.807900px;}
.yc6{bottom:496.544400px;}
.y2e{bottom:505.559100px;}
.yfb{bottom:506.118900px;}
.y132{bottom:506.119050px;}
.y8{bottom:514.653150px;}
.y90{bottom:517.609950px;}
.yc5{bottom:518.372700px;}
.y2d{bottom:523.559100px;}
.yfa{bottom:524.118900px;}
.y131{bottom:524.119050px;}
.y8f{bottom:535.159950px;}
.yc4{bottom:536.372700px;}
.y2c{bottom:541.559100px;}
.yf9{bottom:542.118900px;}
.y130{bottom:542.119050px;}
.y8e{bottom:556.961850px;}
.y2b{bottom:559.559100px;}
.yf8{bottom:560.118900px;}
.y12f{bottom:560.119050px;}
.y5d{bottom:562.444800px;}
.y7{bottom:562.524150px;}
.yc3{bottom:562.876650px;}
.y8d{bottom:574.511850px;}
.y5c{bottom:576.844800px;}
.y2a{bottom:577.559100px;}
.yf7{bottom:578.118900px;}
.y12e{bottom:578.119050px;}
.yc2{bottom:580.876650px;}
.y5b{bottom:591.244800px;}
.y6{bottom:591.324150px;}
.y8c{bottom:592.061850px;}
.y29{bottom:595.559100px;}
.yf6{bottom:596.118900px;}
.y12d{bottom:596.119050px;}
.yc1{bottom:598.876650px;}
.y5a{bottom:605.644800px;}
.y28{bottom:613.559100px;}
.y8b{bottom:613.863900px;}
.yf5{bottom:614.118900px;}
.y12c{bottom:614.119050px;}
.yc0{bottom:616.876650px;}
.y59{bottom:620.044800px;}
.y5{bottom:620.124150px;}
.y16a{bottom:626.867850px;}
.y8a{bottom:631.413900px;}
.y27{bottom:631.559100px;}
.yf4{bottom:632.118900px;}
.y12b{bottom:632.119050px;}
.y58{bottom:634.444800px;}
.ybf{bottom:634.876650px;}
.y169{bottom:646.667850px;}
.y57{bottom:648.844800px;}
.y4{bottom:648.924150px;}
.y26{bottom:649.559100px;}
.yf3{bottom:650.118900px;}
.y12a{bottom:650.119050px;}
.y89{bottom:653.215800px;}
.ybe{bottom:656.705100px;}
.y160{bottom:661.414950px;}
.y56{bottom:663.244800px;}
.y168{bottom:666.467850px;}
.y25{bottom:667.558950px;}
.yf2{bottom:668.118900px;}
.y129{bottom:668.119050px;}
.y88{bottom:670.765800px;}
.ybd{bottom:674.705100px;}
.y15f{bottom:677.614950px;}
.y55{bottom:677.644800px;}
.y3{bottom:677.724150px;}
.y24{bottom:685.558950px;}
.yf1{bottom:686.118900px;}
.y128{bottom:686.119050px;}
.y167{bottom:686.267850px;}
.y87{bottom:688.315800px;}
.y54{bottom:692.044800px;}
.y15e{bottom:693.814950px;}
.ybc{bottom:701.209050px;}
.y23{bottom:703.558950px;}
.yf0{bottom:704.118900px;}
.y127{bottom:704.119050px;}
.y53{bottom:706.444800px;}
.y15d{bottom:710.014950px;}
.y86{bottom:710.117850px;}
.ybb{bottom:719.209050px;}
.y52{bottom:720.844800px;}
.y22{bottom:721.558950px;}
.yef{bottom:722.118900px;}
.y126{bottom:722.119050px;}
.y15c{bottom:726.214950px;}
.y85{bottom:727.667700px;}
.y51{bottom:735.244800px;}
.yba{bottom:737.209050px;}
.y16{bottom:737.785800px;}
.y21{bottom:739.558950px;}
.yee{bottom:740.118900px;}
.y125{bottom:740.119050px;}
.y15b{bottom:742.414950px;}
.y84{bottom:745.217850px;}
.y50{bottom:749.644800px;}
.y161{bottom:750.626550px;}
.yb9{bottom:755.209050px;}
.y20{bottom:757.558950px;}
.yed{bottom:758.118900px;}
.y124{bottom:758.119050px;}
.y15a{bottom:758.614950px;}
.y4f{bottom:764.044800px;}
.y15{bottom:766.585800px;}
.y83{bottom:767.019750px;}
.yb8{bottom:773.209050px;}
.y159{bottom:774.814950px;}
.yec{bottom:776.118900px;}
.y123{bottom:776.119050px;}
.y4e{bottom:778.444800px;}
.y1f{bottom:784.062900px;}
.y82{bottom:784.569750px;}
.y158{bottom:791.014950px;}
.yb7{bottom:791.209050px;}
.y4d{bottom:792.844800px;}
.yeb{bottom:794.118900px;}
.y122{bottom:794.119050px;}
.y1e{bottom:802.062900px;}
.y81{bottom:802.119750px;}
.y157{bottom:807.214950px;}
.y4c{bottom:807.244800px;}
.y14{bottom:810.835950px;}
.yea{bottom:812.118900px;}
.y121{bottom:812.119050px;}
.y4b{bottom:821.644800px;}
.y156{bottom:823.414950px;}
.y80{bottom:823.921650px;}
.y164{bottom:824.305800px;}
.y1d{bottom:828.566850px;}
.ye9{bottom:830.118900px;}
.y120{bottom:830.119050px;}
.y4a{bottom:836.044800px;}
.y155{bottom:839.614950px;}
.y7f{bottom:841.471650px;}
.y13{bottom:843.235800px;}
.y1c{bottom:846.566850px;}
.ye8{bottom:848.118900px;}
.y11f{bottom:848.119050px;}
.yb6{bottom:849.037350px;}
.y49{bottom:850.444800px;}
.y163{bottom:854.409750px;}
.y154{bottom:855.814950px;}
.y7e{bottom:863.273700px;}
.y48{bottom:864.844800px;}
.ye7{bottom:866.118900px;}
.y11e{bottom:866.119050px;}
.yb5{bottom:867.037350px;}
.y47{bottom:879.244800px;}
.y7d{bottom:880.823700px;}
.ye6{bottom:884.118900px;}
.y11d{bottom:884.119050px;}
.y162{bottom:884.513700px;}
.yb4{bottom:885.037350px;}
.y153{bottom:890.015100px;}
.y46{bottom:893.644800px;}
.y7c{bottom:898.373700px;}
.ye5{bottom:902.118900px;}
.y11c{bottom:902.119050px;}
.yb3{bottom:903.037350px;}
.y152{bottom:908.015100px;}
.y45{bottom:908.044800px;}
.ye4{bottom:920.118900px;}
.y11b{bottom:920.119050px;}
.y7b{bottom:920.175600px;}
.y18{bottom:921.851700px;}
.y44{bottom:922.444800px;}
.y151{bottom:926.015100px;}
.y7a{bottom:937.725750px;}
.ye3{bottom:938.118900px;}
.y11a{bottom:938.119050px;}
.yb2{bottom:940.837350px;}
.y150{bottom:944.015100px;}
.y79{bottom:955.275750px;}
.ye2{bottom:956.118900px;}
.y119{bottom:956.119050px;}
.yb1{bottom:958.837350px;}
.y14f{bottom:962.015100px;}
.ye1{bottom:974.118900px;}
.y118{bottom:974.119050px;}
.y19{bottom:976.567500px;}
.yb0{bottom:976.837350px;}
.y78{bottom:977.077650px;}
.y14e{bottom:980.015100px;}
.ye0{bottom:992.118900px;}
.y117{bottom:992.119050px;}
.y77{bottom:994.627650px;}
.yaf{bottom:994.837350px;}
.y14d{bottom:998.015100px;}
.ydf{bottom:1010.118900px;}
.y116{bottom:1010.119050px;}
.y76{bottom:1012.177650px;}
.y14c{bottom:1016.015100px;}
.yde{bottom:1028.118900px;}
.y115{bottom:1028.119050px;}
.y75{bottom:1033.979550px;}
.y14b{bottom:1034.015100px;}
.ydd{bottom:1046.118900px;}
.y114{bottom:1046.119050px;}
.yae{bottom:1050.637350px;}
.y74{bottom:1051.529550px;}
.y14a{bottom:1052.015100px;}
.ydc{bottom:1064.118900px;}
.y113{bottom:1064.119050px;}
.y73{bottom:1069.079550px;}
.y149{bottom:1070.015100px;}
.yab{bottom:1079.667000px;}
.ydb{bottom:1082.118900px;}
.y112{bottom:1082.119050px;}
.yad{bottom:1093.837350px;}
.y148{bottom:1096.518900px;}
.yaa{bottom:1097.217000px;}
.yda{bottom:1100.118900px;}
.y111{bottom:1100.119050px;}
.y72{bottom:1109.035500px;}
.ya9{bottom:1114.767000px;}
.yd9{bottom:1118.118900px;}
.y110{bottom:1118.119050px;}
.yd8{bottom:1136.118900px;}
.y1b{bottom:1136.119050px;}
.ya8{bottom:1136.568900px;}
.yac{bottom:1137.037350px;}
.ya7{bottom:1154.118900px;}
.y1a{bottom:1154.119050px;}
.y6f{bottom:1188.116700px;}
.ya6{bottom:1188.306150px;}
.h18{height:34.945312px;}
.hf{height:34.968750px;}
.h19{height:39.312000px;}
.hc{height:39.313477px;}
.hb{height:39.339844px;}
.he{height:42.539062px;}
.h17{height:42.914062px;}
.h14{height:43.680000px;}
.ha{height:43.681641px;}
.h11{height:43.710938px;}
.h12{height:47.856445px;}
.h22{height:48.082031px;}
.hd{height:48.278320px;}
.h1c{height:50.308594px;}
.h3{height:52.416000px;}
.h1f{height:52.453125px;}
.h13{height:52.560000px;}
.h10{height:53.173828px;}
.h20{height:53.642578px;}
.h21{height:58.491211px;}
.h1b{height:59.006836px;}
.h1e{height:64.371094px;}
.h2{height:69.888000px;}
.h4{height:69.890625px;}
.h6{height:78.626953px;}
.h1d{height:85.148438px;}
.h5{height:85.828125px;}
.h1a{height:100.617188px;}
.h7{height:117.940430px;}
.h15{height:125.771484px;}
.h8{height:157.631257px;}
.h16{height:201.234375px;}
.h9{height:224.928998px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:64.449150px;}
.x1a{left:68.031450px;}
.x4{left:71.199300px;}
.x7{left:77.123250px;}
.x22{left:81.637800px;}
.x8{left:84.447450px;}
.xe{left:90.090000px;}
.x6{left:95.990400px;}
.x19{left:97.795350px;}
.xd{left:104.679900px;}
.x23{left:109.077150px;}
.x2a{left:110.551200px;}
.x2f{left:113.191050px;}
.x3{left:120.066600px;}
.x31{left:123.120750px;}
.x1{left:126.283500px;}
.xc{left:127.455300px;}
.x9{left:130.080300px;}
.x30{left:132.240900px;}
.xf{left:137.920050px;}
.x26{left:140.314950px;}
.x2{left:159.377100px;}
.xb{left:166.953300px;}
.x5{left:200.832150px;}
.x2d{left:208.346400px;}
.x25{left:214.597950px;}
.x35{left:216.316050px;}
.x33{left:227.937750px;}
.x34{left:242.157600px;}
.x10{left:266.726700px;}
.x15{left:271.018350px;}
.x13{left:288.243000px;}
.x11{left:297.418050px;}
.xa{left:310.595850px;}
.x12{left:318.656850px;}
.x36{left:345.754050px;}
.x32{left:369.641850px;}
.x2e{left:379.223100px;}
.x14{left:402.307500px;}
.x1e{left:429.572400px;}
.x20{left:431.700150px;}
.x1f{left:440.870100px;}
.x1b{left:444.330750px;}
.x27{left:472.580700px;}
.x21{left:485.046000px;}
.x1c{left:503.858250px;}
.x1d{left:535.030200px;}
.x16{left:622.913400px;}
.x18{left:689.537550px;}
.x17{left:724.554750px;}
.x2b{left:733.745100px;}
.x2c{left:773.036250px;}
.x28{left:776.636400px;}
.x29{left:855.632400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:1.866667pt;}
.ls0{letter-spacing:2.986667pt;}
.ls1{letter-spacing:5.040000pt;}
.ls4{letter-spacing:7.680000pt;}
.ls3{letter-spacing:9.600000pt;}
.ls8{letter-spacing:12.800000pt;}
.ls5{letter-spacing:24.000000pt;}
.ls6{letter-spacing:51.200000pt;}
.ws7{word-spacing:-107.520000pt;}
.ws1{word-spacing:-76.346658pt;}
.ws0{word-spacing:-53.468222pt;}
.ws13{word-spacing:-26.880000pt;}
.ws9{word-spacing:-24.000000pt;}
.ws6{word-spacing:-22.944000pt;}
.ws16{word-spacing:-17.792000pt;}
.ws8{word-spacing:-16.693333pt;}
.wsc{word-spacing:-14.826667pt;}
.wsd{word-spacing:-13.344000pt;}
.wsf{word-spacing:-12.800000pt;}
.ws17{word-spacing:-3.520000pt;}
.wse{word-spacing:-3.120000pt;}
.ws4{word-spacing:-2.986667pt;}
.ws5{word-spacing:-2.448000pt;}
.ws10{word-spacing:-1.973333pt;}
.wsa{word-spacing:-1.866667pt;}
.ws15{word-spacing:-1.776000pt;}
.wsb{word-spacing:-1.578667pt;}
.ws3{word-spacing:-1.450667pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:1.600000pt;}
.ws12{word-spacing:4.480000pt;}
.ws14{word-spacing:7.680000pt;}
._27{margin-left:-782.528000pt;}
._9{margin-left:-630.655754pt;}
._a{margin-left:-610.773265pt;}
._23{margin-left:-576.128000pt;}
._28{margin-left:-483.739733pt;}
._24{margin-left:-448.160533pt;}
._26{margin-left:-416.346667pt;}
._25{margin-left:-320.000000pt;}
._12{margin-left:-14.681067pt;}
._15{margin-left:-13.405867pt;}
._b{margin-left:-11.818667pt;}
._c{margin-left:-9.600000pt;}
._3{margin-left:-7.816533pt;}
._2{margin-left:-6.357333pt;}
._5{margin-left:-4.770133pt;}
._4{margin-left:-3.579733pt;}
._0{margin-left:-2.368000pt;}
._1{margin-left:-1.348267pt;}
._8{width:0.942933pt;}
._6{width:2.035200pt;}
._7{width:3.707733pt;}
._19{width:5.013867pt;}
._18{width:5.904000pt;}
._1c{width:7.072000pt;}
._11{width:8.218667pt;}
._14{width:9.189333pt;}
._13{width:10.317867pt;}
._17{width:12.067200pt;}
._1f{width:13.424000pt;}
._16{width:16.527467pt;}
._21{width:17.498667pt;}
._1a{width:18.704000pt;}
._1b{width:19.877333pt;}
._d{width:22.224000pt;}
._10{width:24.000000pt;}
._1e{width:24.992000pt;}
._20{width:26.880000pt;}
._1d{width:40.199467pt;}
._22{width:52.450667pt;}
._f{width:93.723200pt;}
._e{width:1107.358933pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fsd{font-size:112.000000pt;}
.fsb{font-size:128.000000pt;}
.fs3{font-size:144.000000pt;}
.fs9{font-size:160.000000pt;}
.fs4{font-size:192.331733pt;}
.fsa{font-size:256.000000pt;}
.fs5{font-size:274.628267pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:48.170000pt;}
.y1{bottom:67.370000pt;}
.y70{bottom:69.850267pt;}
.ya5{bottom:106.041067pt;}
.y43{bottom:113.385733pt;}
.y147{bottom:113.883600pt;}
.y71{bottom:117.716667pt;}
.ya4{bottom:121.641067pt;}
.y6e{bottom:125.692133pt;}
.y17{bottom:127.802400pt;}
.y42{bottom:129.385733pt;}
.y10f{bottom:129.883467pt;}
.y146{bottom:129.883600pt;}
.yd7{bottom:135.054667pt;}
.ya3{bottom:137.240933pt;}
.y6d{bottom:141.692133pt;}
.y41{bottom:145.385733pt;}
.y10e{bottom:145.883467pt;}
.y145{bottom:145.883600pt;}
.yd6{bottom:151.054667pt;}
.ya2{bottom:156.620533pt;}
.y6c{bottom:157.692133pt;}
.y40{bottom:161.385733pt;}
.y10d{bottom:161.883467pt;}
.y144{bottom:161.883600pt;}
.yd5{bottom:167.054667pt;}
.ya1{bottom:172.220533pt;}
.y6b{bottom:173.692133pt;}
.y3f{bottom:177.385733pt;}
.y10c{bottom:177.883467pt;}
.y143{bottom:177.883600pt;}
.yd4{bottom:183.054667pt;}
.y12{bottom:184.517600pt;}
.ya0{bottom:187.820533pt;}
.y6a{bottom:189.692133pt;}
.y3e{bottom:193.385733pt;}
.y10b{bottom:193.883467pt;}
.y142{bottom:193.883600pt;}
.yd3{bottom:199.054667pt;}
.y69{bottom:205.692133pt;}
.y9f{bottom:207.200000pt;}
.y3d{bottom:209.385733pt;}
.y10a{bottom:209.883467pt;}
.y141{bottom:209.883600pt;}
.y11{bottom:210.117600pt;}
.yd2{bottom:215.054667pt;}
.y68{bottom:221.692133pt;}
.y9e{bottom:222.800000pt;}
.y3c{bottom:225.385733pt;}
.y109{bottom:225.883467pt;}
.y140{bottom:225.883600pt;}
.yd1{bottom:231.054667pt;}
.y10{bottom:235.717467pt;}
.y67{bottom:237.692133pt;}
.y3b{bottom:241.385733pt;}
.y108{bottom:241.883467pt;}
.y13f{bottom:241.883600pt;}
.y9d{bottom:242.179600pt;}
.yd0{bottom:247.054667pt;}
.y66{bottom:253.692133pt;}
.y3a{bottom:257.385733pt;}
.y9c{bottom:257.779600pt;}
.y107{bottom:257.883467pt;}
.y13e{bottom:257.883600pt;}
.yf{bottom:261.317600pt;}
.y166{bottom:269.195867pt;}
.y65{bottom:269.692133pt;}
.ycf{bottom:270.613733pt;}
.y9b{bottom:273.379600pt;}
.y39{bottom:273.385733pt;}
.y106{bottom:273.883467pt;}
.y13d{bottom:273.883600pt;}
.y165{bottom:285.195867pt;}
.y64{bottom:285.692133pt;}
.ye{bottom:286.917600pt;}
.y9a{bottom:288.979600pt;}
.y38{bottom:289.385733pt;}
.y105{bottom:289.883467pt;}
.y13c{bottom:289.883600pt;}
.y37{bottom:305.385733pt;}
.yce{bottom:305.813733pt;}
.y104{bottom:305.883467pt;}
.y13b{bottom:305.883600pt;}
.y99{bottom:308.359067pt;}
.yd{bottom:312.517600pt;}
.y16f{bottom:315.772667pt;}
.y36{bottom:321.385733pt;}
.ycd{bottom:321.813733pt;}
.y103{bottom:321.883467pt;}
.y13a{bottom:321.883600pt;}
.y98{bottom:323.959067pt;}
.y16e{bottom:333.372667pt;}
.y35{bottom:337.385733pt;}
.y102{bottom:337.883467pt;}
.y139{bottom:337.883600pt;}
.y97{bottom:339.559067pt;}
.ycc{bottom:345.372800pt;}
.y16d{bottom:350.972667pt;}
.y34{bottom:353.385733pt;}
.y101{bottom:353.883467pt;}
.y138{bottom:353.883600pt;}
.yc{bottom:355.069467pt;}
.y63{bottom:357.490267pt;}
.y96{bottom:358.938667pt;}
.ycb{bottom:361.372800pt;}
.y16c{bottom:368.572667pt;}
.y33{bottom:369.385733pt;}
.y100{bottom:369.883467pt;}
.y137{bottom:369.883600pt;}
.y62{bottom:373.490267pt;}
.y95{bottom:374.538667pt;}
.yca{bottom:377.372800pt;}
.yb{bottom:380.669467pt;}
.y32{bottom:385.385733pt;}
.yff{bottom:385.883467pt;}
.y136{bottom:385.883600pt;}
.y16b{bottom:386.172667pt;}
.y61{bottom:389.490267pt;}
.y94{bottom:390.138667pt;}
.yc9{bottom:393.372800pt;}
.y31{bottom:401.385733pt;}
.yfe{bottom:401.883467pt;}
.y135{bottom:401.883600pt;}
.y60{bottom:405.490267pt;}
.ya{bottom:406.269467pt;}
.yc8{bottom:409.372800pt;}
.y93{bottom:409.518133pt;}
.y30{bottom:417.385733pt;}
.yfd{bottom:417.883467pt;}
.y134{bottom:417.883600pt;}
.y5f{bottom:421.490267pt;}
.y92{bottom:425.118133pt;}
.yc7{bottom:425.372800pt;}
.y9{bottom:431.869467pt;}
.y2f{bottom:433.385867pt;}
.yfc{bottom:433.883467pt;}
.y133{bottom:433.883600pt;}
.y5e{bottom:437.490267pt;}
.y91{bottom:440.718133pt;}
.yc6{bottom:441.372800pt;}
.y2e{bottom:449.385867pt;}
.yfb{bottom:449.883467pt;}
.y132{bottom:449.883600pt;}
.y8{bottom:457.469467pt;}
.y90{bottom:460.097733pt;}
.yc5{bottom:460.775733pt;}
.y2d{bottom:465.385867pt;}
.yfa{bottom:465.883467pt;}
.y131{bottom:465.883600pt;}
.y8f{bottom:475.697733pt;}
.yc4{bottom:476.775733pt;}
.y2c{bottom:481.385867pt;}
.yf9{bottom:481.883467pt;}
.y130{bottom:481.883600pt;}
.y8e{bottom:495.077200pt;}
.y2b{bottom:497.385867pt;}
.yf8{bottom:497.883467pt;}
.y12f{bottom:497.883600pt;}
.y5d{bottom:499.950933pt;}
.y7{bottom:500.021467pt;}
.yc3{bottom:500.334800pt;}
.y8d{bottom:510.677200pt;}
.y5c{bottom:512.750933pt;}
.y2a{bottom:513.385867pt;}
.yf7{bottom:513.883467pt;}
.y12e{bottom:513.883600pt;}
.yc2{bottom:516.334800pt;}
.y5b{bottom:525.550933pt;}
.y6{bottom:525.621467pt;}
.y8c{bottom:526.277200pt;}
.y29{bottom:529.385867pt;}
.yf6{bottom:529.883467pt;}
.y12d{bottom:529.883600pt;}
.yc1{bottom:532.334800pt;}
.y5a{bottom:538.350933pt;}
.y28{bottom:545.385867pt;}
.y8b{bottom:545.656800pt;}
.yf5{bottom:545.883467pt;}
.y12c{bottom:545.883600pt;}
.yc0{bottom:548.334800pt;}
.y59{bottom:551.150933pt;}
.y5{bottom:551.221467pt;}
.y16a{bottom:557.215867pt;}
.y8a{bottom:561.256800pt;}
.y27{bottom:561.385867pt;}
.yf4{bottom:561.883467pt;}
.y12b{bottom:561.883600pt;}
.y58{bottom:563.950933pt;}
.ybf{bottom:564.334800pt;}
.y169{bottom:574.815867pt;}
.y57{bottom:576.750933pt;}
.y4{bottom:576.821467pt;}
.y26{bottom:577.385867pt;}
.yf3{bottom:577.883467pt;}
.y12a{bottom:577.883600pt;}
.y89{bottom:580.636267pt;}
.ybe{bottom:583.737867pt;}
.y160{bottom:587.924400pt;}
.y56{bottom:589.550933pt;}
.y168{bottom:592.415867pt;}
.y25{bottom:593.385733pt;}
.yf2{bottom:593.883467pt;}
.y129{bottom:593.883600pt;}
.y88{bottom:596.236267pt;}
.ybd{bottom:599.737867pt;}
.y15f{bottom:602.324400pt;}
.y55{bottom:602.350933pt;}
.y3{bottom:602.421467pt;}
.y24{bottom:609.385733pt;}
.yf1{bottom:609.883467pt;}
.y128{bottom:609.883600pt;}
.y167{bottom:610.015867pt;}
.y87{bottom:611.836267pt;}
.y54{bottom:615.150933pt;}
.y15e{bottom:616.724400pt;}
.ybc{bottom:623.296933pt;}
.y23{bottom:625.385733pt;}
.yf0{bottom:625.883467pt;}
.y127{bottom:625.883600pt;}
.y53{bottom:627.950933pt;}
.y15d{bottom:631.124400pt;}
.y86{bottom:631.215867pt;}
.ybb{bottom:639.296933pt;}
.y52{bottom:640.750933pt;}
.y22{bottom:641.385733pt;}
.yef{bottom:641.883467pt;}
.y126{bottom:641.883600pt;}
.y15c{bottom:645.524400pt;}
.y85{bottom:646.815733pt;}
.y51{bottom:653.550933pt;}
.yba{bottom:655.296933pt;}
.y16{bottom:655.809600pt;}
.y21{bottom:657.385733pt;}
.yee{bottom:657.883467pt;}
.y125{bottom:657.883600pt;}
.y15b{bottom:659.924400pt;}
.y84{bottom:662.415867pt;}
.y50{bottom:666.350933pt;}
.y161{bottom:667.223600pt;}
.yb9{bottom:671.296933pt;}
.y20{bottom:673.385733pt;}
.yed{bottom:673.883467pt;}
.y124{bottom:673.883600pt;}
.y15a{bottom:674.324400pt;}
.y4f{bottom:679.150933pt;}
.y15{bottom:681.409600pt;}
.y83{bottom:681.795333pt;}
.yb8{bottom:687.296933pt;}
.y159{bottom:688.724400pt;}
.yec{bottom:689.883467pt;}
.y123{bottom:689.883600pt;}
.y4e{bottom:691.950933pt;}
.y1f{bottom:696.944800pt;}
.y82{bottom:697.395333pt;}
.y158{bottom:703.124400pt;}
.yb7{bottom:703.296933pt;}
.y4d{bottom:704.750933pt;}
.yeb{bottom:705.883467pt;}
.y122{bottom:705.883600pt;}
.y1e{bottom:712.944800pt;}
.y81{bottom:712.995333pt;}
.y157{bottom:717.524400pt;}
.y4c{bottom:717.550933pt;}
.y14{bottom:720.743067pt;}
.yea{bottom:721.883467pt;}
.y121{bottom:721.883600pt;}
.y4b{bottom:730.350933pt;}
.y156{bottom:731.924400pt;}
.y80{bottom:732.374800pt;}
.y164{bottom:732.716267pt;}
.y1d{bottom:736.503867pt;}
.ye9{bottom:737.883467pt;}
.y120{bottom:737.883600pt;}
.y4a{bottom:743.150933pt;}
.y155{bottom:746.324400pt;}
.y7f{bottom:747.974800pt;}
.y13{bottom:749.542933pt;}
.y1c{bottom:752.503867pt;}
.ye8{bottom:753.883467pt;}
.y11f{bottom:753.883600pt;}
.yb6{bottom:754.699867pt;}
.y49{bottom:755.950933pt;}
.y163{bottom:759.475333pt;}
.y154{bottom:760.724400pt;}
.y7e{bottom:767.354400pt;}
.y48{bottom:768.750933pt;}
.ye7{bottom:769.883467pt;}
.y11e{bottom:769.883600pt;}
.yb5{bottom:770.699867pt;}
.y47{bottom:781.550933pt;}
.y7d{bottom:782.954400pt;}
.ye6{bottom:785.883467pt;}
.y11d{bottom:785.883600pt;}
.y162{bottom:786.234400pt;}
.yb4{bottom:786.699867pt;}
.y153{bottom:791.124533pt;}
.y46{bottom:794.350933pt;}
.y7c{bottom:798.554400pt;}
.ye5{bottom:801.883467pt;}
.y11c{bottom:801.883600pt;}
.yb3{bottom:802.699867pt;}
.y152{bottom:807.124533pt;}
.y45{bottom:807.150933pt;}
.ye4{bottom:817.883467pt;}
.y11b{bottom:817.883600pt;}
.y7b{bottom:817.933867pt;}
.y18{bottom:819.423733pt;}
.y44{bottom:819.950933pt;}
.y151{bottom:823.124533pt;}
.y7a{bottom:833.534000pt;}
.ye3{bottom:833.883467pt;}
.y11a{bottom:833.883600pt;}
.yb2{bottom:836.299867pt;}
.y150{bottom:839.124533pt;}
.y79{bottom:849.134000pt;}
.ye2{bottom:849.883467pt;}
.y119{bottom:849.883600pt;}
.yb1{bottom:852.299867pt;}
.y14f{bottom:855.124533pt;}
.ye1{bottom:865.883467pt;}
.y118{bottom:865.883600pt;}
.y19{bottom:868.060000pt;}
.yb0{bottom:868.299867pt;}
.y78{bottom:868.513467pt;}
.y14e{bottom:871.124533pt;}
.ye0{bottom:881.883467pt;}
.y117{bottom:881.883600pt;}
.y77{bottom:884.113467pt;}
.yaf{bottom:884.299867pt;}
.y14d{bottom:887.124533pt;}
.ydf{bottom:897.883467pt;}
.y116{bottom:897.883600pt;}
.y76{bottom:899.713467pt;}
.y14c{bottom:903.124533pt;}
.yde{bottom:913.883467pt;}
.y115{bottom:913.883600pt;}
.y75{bottom:919.092933pt;}
.y14b{bottom:919.124533pt;}
.ydd{bottom:929.883467pt;}
.y114{bottom:929.883600pt;}
.yae{bottom:933.899867pt;}
.y74{bottom:934.692933pt;}
.y14a{bottom:935.124533pt;}
.ydc{bottom:945.883467pt;}
.y113{bottom:945.883600pt;}
.y73{bottom:950.292933pt;}
.y149{bottom:951.124533pt;}
.yab{bottom:959.704000pt;}
.ydb{bottom:961.883467pt;}
.y112{bottom:961.883600pt;}
.yad{bottom:972.299867pt;}
.y148{bottom:974.683467pt;}
.yaa{bottom:975.304000pt;}
.yda{bottom:977.883467pt;}
.y111{bottom:977.883600pt;}
.y72{bottom:985.809333pt;}
.ya9{bottom:990.904000pt;}
.yd9{bottom:993.883467pt;}
.y110{bottom:993.883600pt;}
.yd8{bottom:1009.883467pt;}
.y1b{bottom:1009.883600pt;}
.ya8{bottom:1010.283467pt;}
.yac{bottom:1010.699867pt;}
.ya7{bottom:1025.883467pt;}
.y1a{bottom:1025.883600pt;}
.y6f{bottom:1056.103733pt;}
.ya6{bottom:1056.272133pt;}
.h18{height:31.062500pt;}
.hf{height:31.083333pt;}
.h19{height:34.944000pt;}
.hc{height:34.945312pt;}
.hb{height:34.968750pt;}
.he{height:37.812500pt;}
.h17{height:38.145833pt;}
.h14{height:38.826667pt;}
.ha{height:38.828125pt;}
.h11{height:38.854167pt;}
.h12{height:42.539062pt;}
.h22{height:42.739583pt;}
.hd{height:42.914062pt;}
.h1c{height:44.718750pt;}
.h3{height:46.592000pt;}
.h1f{height:46.625000pt;}
.h13{height:46.720000pt;}
.h10{height:47.265625pt;}
.h20{height:47.682292pt;}
.h21{height:51.992188pt;}
.h1b{height:52.450521pt;}
.h1e{height:57.218750pt;}
.h2{height:62.122667pt;}
.h4{height:62.125000pt;}
.h6{height:69.890625pt;}
.h1d{height:75.687500pt;}
.h5{height:76.291667pt;}
.h1a{height:89.437500pt;}
.h7{height:104.835938pt;}
.h15{height:111.796875pt;}
.h8{height:140.116673pt;}
.h16{height:178.875000pt;}
.h9{height:199.936888pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:57.288133pt;}
.x1a{left:60.472400pt;}
.x4{left:63.288267pt;}
.x7{left:68.554000pt;}
.x22{left:72.566933pt;}
.x8{left:75.064400pt;}
.xe{left:80.080000pt;}
.x6{left:85.324800pt;}
.x19{left:86.929200pt;}
.xd{left:93.048800pt;}
.x23{left:96.957467pt;}
.x2a{left:98.267733pt;}
.x2f{left:100.614267pt;}
.x3{left:106.725867pt;}
.x31{left:109.440667pt;}
.x1{left:112.252000pt;}
.xc{left:113.293600pt;}
.x9{left:115.626933pt;}
.x30{left:117.547467pt;}
.xf{left:122.595600pt;}
.x26{left:124.724400pt;}
.x2{left:141.668533pt;}
.xb{left:148.402933pt;}
.x5{left:178.517467pt;}
.x2d{left:185.196800pt;}
.x25{left:190.753733pt;}
.x35{left:192.280933pt;}
.x33{left:202.611333pt;}
.x34{left:215.251200pt;}
.x10{left:237.090400pt;}
.x15{left:240.905200pt;}
.x13{left:256.216000pt;}
.x11{left:264.371600pt;}
.xa{left:276.085200pt;}
.x12{left:283.250533pt;}
.x36{left:307.336933pt;}
.x32{left:328.570533pt;}
.x2e{left:337.087200pt;}
.x14{left:357.606667pt;}
.x1e{left:381.842133pt;}
.x20{left:383.733467pt;}
.x1f{left:391.884533pt;}
.x1b{left:394.960667pt;}
.x27{left:420.071733pt;}
.x21{left:431.152000pt;}
.x1c{left:447.874000pt;}
.x1d{left:475.582400pt;}
.x16{left:553.700800pt;}
.x18{left:612.922267pt;}
.x17{left:644.048667pt;}
.x2b{left:652.217867pt;}
.x2c{left:687.143333pt;}
.x28{left:690.343467pt;}
.x29{left:760.562133pt;}
}




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