
    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_7cf4150b7a3235ca957dc555.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.833984;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_b697f1ced8169ef5ca42e7a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_b0295d0613a74aabfecc32e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.903320;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_97895d6f5ceca22a59af76e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862305;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_2e087fb354a57c1c4d9b70b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.062988;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_437b845bfc772745c4ba2079.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_14d6b0313d9633d1b9f02cbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.833984;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_42b9d1c53d9be76ea40982a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_15826972ab6a5f30d1858cbb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-22.387800px;}
.v2{vertical-align:-18.981000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.781200px;}
.v4{vertical-align:19.980000px;}
.v5{vertical-align:21.978000px;}
.v1{vertical-align:29.970000px;}
.lsc{letter-spacing:-0.990000px;}
.ls5{letter-spacing:-0.570000px;}
.ls8{letter-spacing:-0.564000px;}
.ls2{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.528000px;}
.lsb{letter-spacing:-0.399000px;}
.ls4{letter-spacing:-0.332310px;}
.lsa{letter-spacing:-0.232617px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.007800px;}
.ls14{letter-spacing:0.132000px;}
.ls7{letter-spacing:0.384780px;}
.ls10{letter-spacing:0.462000px;}
.ls6{letter-spacing:0.660000px;}
.ls3{letter-spacing:1.430400px;}
.ls1{letter-spacing:1.521000px;}
.lse{letter-spacing:2.048172px;}
.ls12{letter-spacing:2.061600px;}
.lsd{letter-spacing:2.307972px;}
.ls13{letter-spacing:4.135200px;}
.ls11{letter-spacing:7.822200px;}
.ls15{letter-spacing:8.656200px;}
.ls16{letter-spacing:12.565800px;}
.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;}
}
.ws9{word-spacing:-16.500000px;}
.ws20{word-spacing:-15.576000px;}
.ws22{word-spacing:-15.378000px;}
.ws25{word-spacing:-15.048000px;}
.wsd{word-spacing:-14.916000px;}
.ws16{word-spacing:-14.388000px;}
.ws1a{word-spacing:-13.926000px;}
.wse{word-spacing:-12.882000px;}
.ws19{word-spacing:-12.746400px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-10.170000px;}
.ws12{word-spacing:-9.080808px;}
.ws8{word-spacing:-8.696028px;}
.ws5{word-spacing:-7.905480px;}
.ws11{word-spacing:-7.431151px;}
.ws24{word-spacing:-3.894000px;}
.ws1c{word-spacing:-2.964000px;}
.ws26{word-spacing:-2.706000px;}
.ws10{word-spacing:-2.178000px;}
.ws6{word-spacing:-1.521000px;}
.ws3{word-spacing:-0.741000px;}
.ws13{word-spacing:-0.660000px;}
.ws2{word-spacing:0.000000px;}
.ws17{word-spacing:0.232617px;}
.wsb{word-spacing:0.332310px;}
.ws18{word-spacing:0.399000px;}
.ws4{word-spacing:0.540000px;}
.ws14{word-spacing:0.564000px;}
.wsc{word-spacing:0.570000px;}
.ws1e{word-spacing:1.584000px;}
.ws1d{word-spacing:2.109000px;}
.wsf{word-spacing:4.488000px;}
.ws1b{word-spacing:4.620000px;}
.ws21{word-spacing:6.204000px;}
.ws15{word-spacing:6.402000px;}
.ws1f{word-spacing:7.581000px;}
.ws23{word-spacing:7.854000px;}
.ws7{word-spacing:8.448000px;}
.wsa{word-spacing:35.640000px;}
._1b{margin-left:-8.662200px;}
._17{margin-left:-7.649100px;}
._b{margin-left:-6.459600px;}
._a{margin-left:-5.437323px;}
._3{margin-left:-4.158000px;}
._2{margin-left:-3.105000px;}
._0{margin-left:-1.566000px;}
._6{width:1.026000px;}
._1{width:2.027400px;}
._4{width:3.245400px;}
._5{width:5.065200px;}
._8{width:6.712200px;}
._9{width:8.634600px;}
._7{width:10.297800px;}
._14{width:11.377200px;}
._15{width:12.492582px;}
._13{width:14.301954px;}
._10{width:15.339600px;}
._c{width:17.030100px;}
._d{width:18.262800px;}
._18{width:19.605060px;}
._16{width:20.608320px;}
._12{width:22.050480px;}
._1a{width:24.077400px;}
._19{width:25.296000px;}
._e{width:33.834600px;}
._11{width:35.862000px;}
._1c{width:41.190600px;}
._f{width:1788.421800px;}
.fc4{color:rgb(79,129,189);}
.fc3{color:rgb(112,112,112);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(178,178,178);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:32.881200px;}
.fs6{font-size:33.231000px;}
.fsd{font-size:34.980000px;}
.fs9{font-size:37.800000px;}
.fse{font-size:38.478000px;}
.fs7{font-size:39.000000px;}
.fs8{font-size:43.800000px;}
.fs1{font-size:45.000000px;}
.fs3{font-size:52.470000px;}
.fs0{font-size:54.000000px;}
.fsc{font-size:56.400000px;}
.fs5{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:32.593950px;}
.y1{bottom:42.519750px;}
.y6{bottom:46.093950px;}
.y28{bottom:47.833200px;}
.y51{bottom:48.116700px;}
.y27{bottom:59.173200px;}
.y50{bottom:59.456700px;}
.y5{bottom:59.593950px;}
.y4{bottom:73.093950px;}
.y78{bottom:110.551350px;}
.y95{bottom:112.677300px;}
.y25{bottom:112.677450px;}
.y11a{bottom:115.129200px;}
.yfa{bottom:117.422550px;}
.y4f{bottom:118.729200px;}
.y77{bottom:127.651350px;}
.y24{bottom:129.777300px;}
.y13a{bottom:129.777450px;}
.yf9{bottom:134.029500px;}
.ya2{bottom:134.522550px;}
.y96{bottom:134.522700px;}
.y119{bottom:134.929200px;}
.y4e{bottom:136.729200px;}
.yfd{bottom:138.774750px;}
.y76{bottom:144.751350px;}
.y94{bottom:146.877300px;}
.y23{bottom:146.877450px;}
.y120{bottom:147.529200px;}
.yaf{bottom:151.129500px;}
.ycf{bottom:151.622550px;}
.y4d{bottom:154.729200px;}
.y104{bottom:155.381550px;}
.ya1{bottom:155.874750px;}
.yfc{bottom:160.126800px;}
.y93{bottom:163.977300px;}
.y22{bottom:163.977450px;}
.y11f{bottom:165.529200px;}
.y75{bottom:166.596600px;}
.yce{bottom:168.229500px;}
.ya0{bottom:172.481550px;}
.y4c{bottom:172.729200px;}
.yae{bottom:172.974750px;}
.y10f{bottom:174.529200px;}
.yfb{bottom:176.733750px;}
.y92{bottom:181.077300px;}
.y21{bottom:181.077450px;}
.y11e{bottom:183.529200px;}
.ycd{bottom:185.329500px;}
.yad{bottom:189.581550px;}
.y4b{bottom:190.729200px;}
.y9f{bottom:194.326800px;}
.y74{bottom:194.329050px;}
.ye4{bottom:194.329200px;}
.y91{bottom:198.177300px;}
.y20{bottom:198.177450px;}
.y11d{bottom:201.529200px;}
.ycc{bottom:202.429500px;}
.yc4{bottom:202.922550px;}
.yf8{bottom:207.174750px;}
.y4a{bottom:208.729200px;}
.y9e{bottom:210.933750px;}
.yac{bottom:211.426800px;}
.y73{bottom:214.129050px;}
.ye3{bottom:214.129200px;}
.y1f{bottom:215.277300px;}
.y139{bottom:215.277450px;}
.y11c{bottom:219.529200px;}
.ycb{bottom:219.529500px;}
.y90{bottom:220.022550px;}
.yf7{bottom:223.781550px;}
.ydd{bottom:224.274750px;}
.y49{bottom:226.729200px;}
.yab{bottom:228.033750px;}
.y126{bottom:232.377300px;}
.y138{bottom:232.377450px;}
.y9d{bottom:232.779000px;}
.y72{bottom:233.929050px;}
.yc3{bottom:233.929200px;}
.yca{bottom:236.629500px;}
.y1e{bottom:237.122700px;}
.y11b{bottom:237.529200px;}
.yf6{bottom:240.881550px;}
.ydc{bottom:240.881700px;}
.yee{bottom:242.929200px;}
.y48{bottom:244.729200px;}
.yaa{bottom:245.133750px;}
.y125{bottom:249.477300px;}
.y137{bottom:249.477450px;}
.y103{bottom:249.879000px;}
.y71{bottom:253.729050px;}
.y8f{bottom:253.729200px;}
.yc9{bottom:253.729500px;}
.yf5{bottom:257.981550px;}
.ydb{bottom:257.981700px;}
.yed{bottom:260.929200px;}
.y47{bottom:262.729200px;}
.y1d{bottom:263.178750px;}
.y102{bottom:266.485800px;}
.y124{bottom:266.577300px;}
.y136{bottom:266.577450px;}
.y118{bottom:270.829500px;}
.y70{bottom:273.529200px;}
.yf4{bottom:275.081550px;}
.yda{bottom:275.081700px;}
.y146{bottom:275.329200px;}
.yc8{bottom:275.574750px;}
.yec{bottom:278.929200px;}
.y1c{bottom:279.378750px;}
.y46{bottom:280.729200px;}
.y123{bottom:283.677300px;}
.y135{bottom:283.677450px;}
.ybd{bottom:284.329200px;}
.y12f{bottom:287.929500px;}
.y101{bottom:288.331050px;}
.yf3{bottom:292.181550px;}
.y117{bottom:292.674750px;}
.y6f{bottom:293.329050px;}
.y8e{bottom:293.329200px;}
.y1b{bottom:295.578750px;}
.yd9{bottom:296.926950px;}
.yeb{bottom:296.929200px;}
.y45{bottom:298.729200px;}
.y134{bottom:300.777300px;}
.ybc{bottom:302.329200px;}
.ye2{bottom:304.129200px;}
.y100{bottom:304.938000px;}
.y12e{bottom:305.029500px;}
.y122{bottom:305.522550px;}
.y116{bottom:309.281550px;}
.y145{bottom:311.329200px;}
.y1a{bottom:311.778750px;}
.y6e{bottom:313.129050px;}
.y8d{bottom:313.129200px;}
.yd8{bottom:313.533750px;}
.yf2{bottom:314.026800px;}
.y44{bottom:316.729200px;}
.y133{bottom:317.877300px;}
.ybb{bottom:320.329200px;}
.yff{bottom:322.038000px;}
.ye1{bottom:322.129200px;}
.y12d{bottom:322.129500px;}
.y10e{bottom:325.729200px;}
.y121{bottom:326.874750px;}
.y19{bottom:327.978750px;}
.y144{bottom:329.329200px;}
.yd7{bottom:330.633750px;}
.y115{bottom:331.126800px;}
.y6d{bottom:332.929050px;}
.y8c{bottom:332.929200px;}
.yba{bottom:338.329200px;}
.y12c{bottom:339.229500px;}
.y132{bottom:339.722700px;}
.ye0{bottom:340.129200px;}
.y10d{bottom:343.729200px;}
.yfe{bottom:343.883250px;}
.y18{bottom:344.178750px;}
.y143{bottom:347.329200px;}
.yd6{bottom:347.733750px;}
.yf1{bottom:352.479000px;}
.y6c{bottom:352.729050px;}
.y43{bottom:352.729200px;}
.yb9{bottom:356.329200px;}
.y12b{bottom:356.329500px;}
.ydf{bottom:358.129200px;}
.y17{bottom:360.378750px;}
.y10c{bottom:361.729200px;}
.y142{bottom:365.329200px;}
.yd5{bottom:369.579000px;}
.y42{bottom:372.529200px;}
.y12a{bottom:373.429500px;}
.yde{bottom:376.129200px;}
.y16{bottom:376.578750px;}
.y10b{bottom:379.729200px;}
.y141{bottom:383.329200px;}
.y6b{bottom:392.329050px;}
.y41{bottom:392.329200px;}
.y15{bottom:392.778750px;}
.y129{bottom:395.274750px;}
.y10a{bottom:397.729200px;}
.y140{bottom:401.329200px;}
.y14{bottom:408.978750px;}
.y128{bottom:411.881550px;}
.y6a{bottom:412.129050px;}
.y40{bottom:412.129200px;}
.y109{bottom:415.729200px;}
.y13f{bottom:419.329200px;}
.y114{bottom:422.929200px;}
.y130{bottom:424.729200px;}
.y13{bottom:425.178750px;}
.y69{bottom:431.929050px;}
.y3f{bottom:431.929200px;}
.y127{bottom:433.726800px;}
.y13e{bottom:437.329200px;}
.y113{bottom:440.929200px;}
.y12{bottom:441.378750px;}
.yd4{bottom:442.729200px;}
.y68{bottom:451.729050px;}
.y3e{bottom:451.729200px;}
.y13d{bottom:455.329200px;}
.y112{bottom:458.929200px;}
.yd3{bottom:460.729200px;}
.y3d{bottom:471.529200px;}
.y111{bottom:476.929200px;}
.yd2{bottom:478.729200px;}
.yc2{bottom:482.329200px;}
.y11{bottom:489.468450px;}
.y67{bottom:491.329050px;}
.y8b{bottom:491.329200px;}
.y110{bottom:494.929200px;}
.yd1{bottom:496.729200px;}
.yc1{bottom:500.329200px;}
.y10{bottom:507.844050px;}
.y66{bottom:511.129050px;}
.y3c{bottom:511.129200px;}
.yd0{bottom:514.729200px;}
.yc0{bottom:518.329200px;}
.y65{bottom:530.929050px;}
.y8a{bottom:530.929200px;}
.yf{bottom:535.573950px;}
.ybf{bottom:536.329200px;}
.y64{bottom:550.729050px;}
.y89{bottom:550.729200px;}
.ye{bottom:552.673950px;}
.ybe{bottom:554.329200px;}
.y13c{bottom:563.329200px;}
.yd{bottom:569.773950px;}
.y63{bottom:570.529050px;}
.y88{bottom:570.529200px;}
.y13b{bottom:581.329200px;}
.y3b{bottom:582.684450px;}
.y62{bottom:590.329050px;}
.y87{bottom:590.329200px;}
.yc7{bottom:597.529200px;}
.y3a{bottom:598.884450px;}
.y108{bottom:599.329200px;}
.yea{bottom:602.929200px;}
.yb8{bottom:608.329200px;}
.y61{bottom:610.129050px;}
.y86{bottom:610.129200px;}
.yc6{bottom:615.529200px;}
.y107{bottom:617.329200px;}
.ye9{bottom:620.929200px;}
.yb7{bottom:626.329200px;}
.y60{bottom:629.929200px;}
.yc5{bottom:633.529200px;}
.yc{bottom:633.645600px;}
.y39{bottom:634.218300px;}
.y106{bottom:635.329200px;}
.ye8{bottom:638.929200px;}
.yb6{bottom:644.329200px;}
.y5f{bottom:649.729050px;}
.y85{bottom:649.729200px;}
.y105{bottom:653.329200px;}
.yb{bottom:655.245600px;}
.y38{bottom:656.796300px;}
.ye7{bottom:656.929200px;}
.yb5{bottom:662.329200px;}
.y5e{bottom:669.529050px;}
.y84{bottom:669.529200px;}
.y37{bottom:672.996300px;}
.ye6{bottom:674.929200px;}
.yb4{bottom:680.329200px;}
.y36{bottom:689.196300px;}
.y5d{bottom:689.329050px;}
.y83{bottom:689.329200px;}
.ya{bottom:689.601450px;}
.ye5{bottom:692.929200px;}
.yb3{bottom:698.329200px;}
.y35{bottom:705.396300px;}
.y5c{bottom:709.129050px;}
.y82{bottom:709.129200px;}
.yb2{bottom:716.329200px;}
.y9{bottom:718.101450px;}
.y34{bottom:721.596300px;}
.y5b{bottom:728.929200px;}
.yb1{bottom:734.329200px;}
.y33{bottom:737.796300px;}
.ya9{bottom:743.329200px;}
.y8{bottom:746.601450px;}
.y5a{bottom:748.729050px;}
.y81{bottom:748.729200px;}
.yb0{bottom:752.329200px;}
.y32{bottom:753.996300px;}
.ya8{bottom:761.329200px;}
.y80{bottom:768.529200px;}
.y31{bottom:770.196300px;}
.ya7{bottom:779.329200px;}
.y9c{bottom:781.129200px;}
.y30{bottom:786.396300px;}
.y7f{bottom:788.329200px;}
.y59{bottom:796.057050px;}
.ya6{bottom:797.329200px;}
.y9b{bottom:799.129200px;}
.y2f{bottom:802.596300px;}
.y7e{bottom:808.129200px;}
.y58{bottom:814.057050px;}
.ya5{bottom:815.329200px;}
.y9a{bottom:817.129200px;}
.y2e{bottom:818.796300px;}
.y7d{bottom:827.929200px;}
.y57{bottom:832.057050px;}
.ya4{bottom:833.329200px;}
.y2d{bottom:834.996300px;}
.y99{bottom:835.129200px;}
.y7c{bottom:847.729200px;}
.y56{bottom:850.057050px;}
.y2c{bottom:851.196300px;}
.ya3{bottom:851.329200px;}
.y98{bottom:853.129200px;}
.y7b{bottom:867.529200px;}
.y55{bottom:868.057050px;}
.y97{bottom:871.129200px;}
.y3{bottom:871.215450px;}
.y2{bottom:885.615450px;}
.y54{bottom:886.057050px;}
.y2b{bottom:886.530150px;}
.y7a{bottom:887.329200px;}
.y131{bottom:889.129200px;}
.y53{bottom:904.057050px;}
.yf0{bottom:906.858150px;}
.y79{bottom:907.129200px;}
.y2a{bottom:909.108150px;}
.y52{bottom:922.057050px;}
.yef{bottom:924.858150px;}
.y29{bottom:925.308150px;}
.y26{bottom:953.632350px;}
.ha{height:28.027301px;}
.h13{height:28.027901px;}
.he{height:31.173926px;}
.hc{height:32.163574px;}
.h4{height:32.673340px;}
.hd{height:36.122168px;}
.h3{height:37.111816px;}
.h9{height:39.020508px;}
.hb{height:40.913086px;}
.h7{height:41.386230px;}
.h2{height:44.534180px;}
.h12{height:46.513477px;}
.h8{height:47.008301px;}
.hf{height:49.482422px;}
.h6{height:51.679688px;}
.h11{height:54.430664px;}
.h10{height:59.167969px;}
.h5{height:80.683594px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:76.535400px;}
.x10{left:93.543300px;}
.x15{left:103.535400px;}
.xd{left:106.299150px;}
.x13{left:121.419900px;}
.x11{left:123.307050px;}
.x14{left:136.063050px;}
.x3{left:152.605200px;}
.x5{left:164.711100px;}
.x16{left:165.826800px;}
.x6{left:169.591050px;}
.x7{left:174.293250px;}
.x12{left:182.834700px;}
.x4{left:191.628600px;}
.xa{left:247.046250px;}
.xe{left:321.744900px;}
.xc{left:435.594300px;}
.xb{left:441.912150px;}
.x9{left:484.126350px;}
.x8{left:509.056950px;}
.xf{left:575.664300px;}
.x1{left:594.579000px;}
@media print{
.v3{vertical-align:-19.900267pt;}
.v2{vertical-align:-16.872000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.694400pt;}
.v4{vertical-align:17.760000pt;}
.v5{vertical-align:19.536000pt;}
.v1{vertical-align:26.640000pt;}
.lsc{letter-spacing:-0.880000pt;}
.ls5{letter-spacing:-0.506667pt;}
.ls8{letter-spacing:-0.501333pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.469333pt;}
.lsb{letter-spacing:-0.354667pt;}
.ls4{letter-spacing:-0.295387pt;}
.lsa{letter-spacing:-0.206771pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.006933pt;}
.ls14{letter-spacing:0.117333pt;}
.ls7{letter-spacing:0.342027pt;}
.ls10{letter-spacing:0.410667pt;}
.ls6{letter-spacing:0.586667pt;}
.ls3{letter-spacing:1.271467pt;}
.ls1{letter-spacing:1.352000pt;}
.lse{letter-spacing:1.820597pt;}
.ls12{letter-spacing:1.832533pt;}
.lsd{letter-spacing:2.051531pt;}
.ls13{letter-spacing:3.675733pt;}
.ls11{letter-spacing:6.953067pt;}
.ls15{letter-spacing:7.694400pt;}
.ls16{letter-spacing:11.169600pt;}
.ws9{word-spacing:-14.666667pt;}
.ws20{word-spacing:-13.845333pt;}
.ws22{word-spacing:-13.669333pt;}
.ws25{word-spacing:-13.376000pt;}
.wsd{word-spacing:-13.258667pt;}
.ws16{word-spacing:-12.789333pt;}
.ws1a{word-spacing:-12.378667pt;}
.wse{word-spacing:-11.450667pt;}
.ws19{word-spacing:-11.330133pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-9.040000pt;}
.ws12{word-spacing:-8.071829pt;}
.ws8{word-spacing:-7.729803pt;}
.ws5{word-spacing:-7.027093pt;}
.ws11{word-spacing:-6.605468pt;}
.ws24{word-spacing:-3.461333pt;}
.ws1c{word-spacing:-2.634667pt;}
.ws26{word-spacing:-2.405333pt;}
.ws10{word-spacing:-1.936000pt;}
.ws6{word-spacing:-1.352000pt;}
.ws3{word-spacing:-0.658667pt;}
.ws13{word-spacing:-0.586667pt;}
.ws2{word-spacing:0.000000pt;}
.ws17{word-spacing:0.206771pt;}
.wsb{word-spacing:0.295387pt;}
.ws18{word-spacing:0.354667pt;}
.ws4{word-spacing:0.480000pt;}
.ws14{word-spacing:0.501333pt;}
.wsc{word-spacing:0.506667pt;}
.ws1e{word-spacing:1.408000pt;}
.ws1d{word-spacing:1.874667pt;}
.wsf{word-spacing:3.989333pt;}
.ws1b{word-spacing:4.106667pt;}
.ws21{word-spacing:5.514667pt;}
.ws15{word-spacing:5.690667pt;}
.ws1f{word-spacing:6.738667pt;}
.ws23{word-spacing:6.981333pt;}
.ws7{word-spacing:7.509333pt;}
.wsa{word-spacing:31.680000pt;}
._1b{margin-left:-7.699733pt;}
._17{margin-left:-6.799200pt;}
._b{margin-left:-5.741867pt;}
._a{margin-left:-4.833176pt;}
._3{margin-left:-3.696000pt;}
._2{margin-left:-2.760000pt;}
._0{margin-left:-1.392000pt;}
._6{width:0.912000pt;}
._1{width:1.802133pt;}
._4{width:2.884800pt;}
._5{width:4.502400pt;}
._8{width:5.966400pt;}
._9{width:7.675200pt;}
._7{width:9.153600pt;}
._14{width:10.113067pt;}
._15{width:11.104517pt;}
._13{width:12.712848pt;}
._10{width:13.635200pt;}
._c{width:15.137867pt;}
._d{width:16.233600pt;}
._18{width:17.426720pt;}
._16{width:18.318507pt;}
._12{width:19.600427pt;}
._1a{width:21.402133pt;}
._19{width:22.485333pt;}
._e{width:30.075200pt;}
._11{width:31.877333pt;}
._1c{width:36.613867pt;}
._f{width:1589.708267pt;}
.fsf{font-size:29.227733pt;}
.fs6{font-size:29.538667pt;}
.fsd{font-size:31.093333pt;}
.fs9{font-size:33.600000pt;}
.fse{font-size:34.202667pt;}
.fs7{font-size:34.666667pt;}
.fs8{font-size:38.933333pt;}
.fs1{font-size:40.000000pt;}
.fs3{font-size:46.640000pt;}
.fs0{font-size:48.000000pt;}
.fsc{font-size:50.133333pt;}
.fs5{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:28.972400pt;}
.y1{bottom:37.795333pt;}
.y6{bottom:40.972400pt;}
.y28{bottom:42.518400pt;}
.y51{bottom:42.770400pt;}
.y27{bottom:52.598400pt;}
.y50{bottom:52.850400pt;}
.y5{bottom:52.972400pt;}
.y4{bottom:64.972400pt;}
.y78{bottom:98.267867pt;}
.y95{bottom:100.157600pt;}
.y25{bottom:100.157733pt;}
.y11a{bottom:102.337067pt;}
.yfa{bottom:104.375600pt;}
.y4f{bottom:105.537067pt;}
.y77{bottom:113.467867pt;}
.y24{bottom:115.357600pt;}
.y13a{bottom:115.357733pt;}
.yf9{bottom:119.137333pt;}
.ya2{bottom:119.575600pt;}
.y96{bottom:119.575733pt;}
.y119{bottom:119.937067pt;}
.y4e{bottom:121.537067pt;}
.yfd{bottom:123.355333pt;}
.y76{bottom:128.667867pt;}
.y94{bottom:130.557600pt;}
.y23{bottom:130.557733pt;}
.y120{bottom:131.137067pt;}
.yaf{bottom:134.337333pt;}
.ycf{bottom:134.775600pt;}
.y4d{bottom:137.537067pt;}
.y104{bottom:138.116933pt;}
.ya1{bottom:138.555333pt;}
.yfc{bottom:142.334933pt;}
.y93{bottom:145.757600pt;}
.y22{bottom:145.757733pt;}
.y11f{bottom:147.137067pt;}
.y75{bottom:148.085867pt;}
.yce{bottom:149.537333pt;}
.ya0{bottom:153.316933pt;}
.y4c{bottom:153.537067pt;}
.yae{bottom:153.755333pt;}
.y10f{bottom:155.137067pt;}
.yfb{bottom:157.096667pt;}
.y92{bottom:160.957600pt;}
.y21{bottom:160.957733pt;}
.y11e{bottom:163.137067pt;}
.ycd{bottom:164.737333pt;}
.yad{bottom:168.516933pt;}
.y4b{bottom:169.537067pt;}
.y9f{bottom:172.734933pt;}
.y74{bottom:172.736933pt;}
.ye4{bottom:172.737067pt;}
.y91{bottom:176.157600pt;}
.y20{bottom:176.157733pt;}
.y11d{bottom:179.137067pt;}
.ycc{bottom:179.937333pt;}
.yc4{bottom:180.375600pt;}
.yf8{bottom:184.155333pt;}
.y4a{bottom:185.537067pt;}
.y9e{bottom:187.496667pt;}
.yac{bottom:187.934933pt;}
.y73{bottom:190.336933pt;}
.ye3{bottom:190.337067pt;}
.y1f{bottom:191.357600pt;}
.y139{bottom:191.357733pt;}
.y11c{bottom:195.137067pt;}
.ycb{bottom:195.137333pt;}
.y90{bottom:195.575600pt;}
.yf7{bottom:198.916933pt;}
.ydd{bottom:199.355333pt;}
.y49{bottom:201.537067pt;}
.yab{bottom:202.696667pt;}
.y126{bottom:206.557600pt;}
.y138{bottom:206.557733pt;}
.y9d{bottom:206.914667pt;}
.y72{bottom:207.936933pt;}
.yc3{bottom:207.937067pt;}
.yca{bottom:210.337333pt;}
.y1e{bottom:210.775733pt;}
.y11b{bottom:211.137067pt;}
.yf6{bottom:214.116933pt;}
.ydc{bottom:214.117067pt;}
.yee{bottom:215.937067pt;}
.y48{bottom:217.537067pt;}
.yaa{bottom:217.896667pt;}
.y125{bottom:221.757600pt;}
.y137{bottom:221.757733pt;}
.y103{bottom:222.114667pt;}
.y71{bottom:225.536933pt;}
.y8f{bottom:225.537067pt;}
.yc9{bottom:225.537333pt;}
.yf5{bottom:229.316933pt;}
.ydb{bottom:229.317067pt;}
.yed{bottom:231.937067pt;}
.y47{bottom:233.537067pt;}
.y1d{bottom:233.936667pt;}
.y102{bottom:236.876267pt;}
.y124{bottom:236.957600pt;}
.y136{bottom:236.957733pt;}
.y118{bottom:240.737333pt;}
.y70{bottom:243.137067pt;}
.yf4{bottom:244.516933pt;}
.yda{bottom:244.517067pt;}
.y146{bottom:244.737067pt;}
.yc8{bottom:244.955333pt;}
.yec{bottom:247.937067pt;}
.y1c{bottom:248.336667pt;}
.y46{bottom:249.537067pt;}
.y123{bottom:252.157600pt;}
.y135{bottom:252.157733pt;}
.ybd{bottom:252.737067pt;}
.y12f{bottom:255.937333pt;}
.y101{bottom:256.294267pt;}
.yf3{bottom:259.716933pt;}
.y117{bottom:260.155333pt;}
.y6f{bottom:260.736933pt;}
.y8e{bottom:260.737067pt;}
.y1b{bottom:262.736667pt;}
.yd9{bottom:263.935067pt;}
.yeb{bottom:263.937067pt;}
.y45{bottom:265.537067pt;}
.y134{bottom:267.357600pt;}
.ybc{bottom:268.737067pt;}
.ye2{bottom:270.337067pt;}
.y100{bottom:271.056000pt;}
.y12e{bottom:271.137333pt;}
.y122{bottom:271.575600pt;}
.y116{bottom:274.916933pt;}
.y145{bottom:276.737067pt;}
.y1a{bottom:277.136667pt;}
.y6e{bottom:278.336933pt;}
.y8d{bottom:278.337067pt;}
.yd8{bottom:278.696667pt;}
.yf2{bottom:279.134933pt;}
.y44{bottom:281.537067pt;}
.y133{bottom:282.557600pt;}
.ybb{bottom:284.737067pt;}
.yff{bottom:286.256000pt;}
.ye1{bottom:286.337067pt;}
.y12d{bottom:286.337333pt;}
.y10e{bottom:289.537067pt;}
.y121{bottom:290.555333pt;}
.y19{bottom:291.536667pt;}
.y144{bottom:292.737067pt;}
.yd7{bottom:293.896667pt;}
.y115{bottom:294.334933pt;}
.y6d{bottom:295.936933pt;}
.y8c{bottom:295.937067pt;}
.yba{bottom:300.737067pt;}
.y12c{bottom:301.537333pt;}
.y132{bottom:301.975733pt;}
.ye0{bottom:302.337067pt;}
.y10d{bottom:305.537067pt;}
.yfe{bottom:305.674000pt;}
.y18{bottom:305.936667pt;}
.y143{bottom:308.737067pt;}
.yd6{bottom:309.096667pt;}
.yf1{bottom:313.314667pt;}
.y6c{bottom:313.536933pt;}
.y43{bottom:313.537067pt;}
.yb9{bottom:316.737067pt;}
.y12b{bottom:316.737333pt;}
.ydf{bottom:318.337067pt;}
.y17{bottom:320.336667pt;}
.y10c{bottom:321.537067pt;}
.y142{bottom:324.737067pt;}
.yd5{bottom:328.514667pt;}
.y42{bottom:331.137067pt;}
.y12a{bottom:331.937333pt;}
.yde{bottom:334.337067pt;}
.y16{bottom:334.736667pt;}
.y10b{bottom:337.537067pt;}
.y141{bottom:340.737067pt;}
.y6b{bottom:348.736933pt;}
.y41{bottom:348.737067pt;}
.y15{bottom:349.136667pt;}
.y129{bottom:351.355333pt;}
.y10a{bottom:353.537067pt;}
.y140{bottom:356.737067pt;}
.y14{bottom:363.536667pt;}
.y128{bottom:366.116933pt;}
.y6a{bottom:366.336933pt;}
.y40{bottom:366.337067pt;}
.y109{bottom:369.537067pt;}
.y13f{bottom:372.737067pt;}
.y114{bottom:375.937067pt;}
.y130{bottom:377.537067pt;}
.y13{bottom:377.936667pt;}
.y69{bottom:383.936933pt;}
.y3f{bottom:383.937067pt;}
.y127{bottom:385.534933pt;}
.y13e{bottom:388.737067pt;}
.y113{bottom:391.937067pt;}
.y12{bottom:392.336667pt;}
.yd4{bottom:393.537067pt;}
.y68{bottom:401.536933pt;}
.y3e{bottom:401.537067pt;}
.y13d{bottom:404.737067pt;}
.y112{bottom:407.937067pt;}
.yd3{bottom:409.537067pt;}
.y3d{bottom:419.137067pt;}
.y111{bottom:423.937067pt;}
.yd2{bottom:425.537067pt;}
.yc2{bottom:428.737067pt;}
.y11{bottom:435.083067pt;}
.y67{bottom:436.736933pt;}
.y8b{bottom:436.737067pt;}
.y110{bottom:439.937067pt;}
.yd1{bottom:441.537067pt;}
.yc1{bottom:444.737067pt;}
.y10{bottom:451.416933pt;}
.y66{bottom:454.336933pt;}
.y3c{bottom:454.337067pt;}
.yd0{bottom:457.537067pt;}
.yc0{bottom:460.737067pt;}
.y65{bottom:471.936933pt;}
.y8a{bottom:471.937067pt;}
.yf{bottom:476.065733pt;}
.ybf{bottom:476.737067pt;}
.y64{bottom:489.536933pt;}
.y89{bottom:489.537067pt;}
.ye{bottom:491.265733pt;}
.ybe{bottom:492.737067pt;}
.y13c{bottom:500.737067pt;}
.yd{bottom:506.465733pt;}
.y63{bottom:507.136933pt;}
.y88{bottom:507.137067pt;}
.y13b{bottom:516.737067pt;}
.y3b{bottom:517.941733pt;}
.y62{bottom:524.736933pt;}
.y87{bottom:524.737067pt;}
.yc7{bottom:531.137067pt;}
.y3a{bottom:532.341733pt;}
.y108{bottom:532.737067pt;}
.yea{bottom:535.937067pt;}
.yb8{bottom:540.737067pt;}
.y61{bottom:542.336933pt;}
.y86{bottom:542.337067pt;}
.yc6{bottom:547.137067pt;}
.y107{bottom:548.737067pt;}
.ye9{bottom:551.937067pt;}
.yb7{bottom:556.737067pt;}
.y60{bottom:559.937067pt;}
.yc5{bottom:563.137067pt;}
.yc{bottom:563.240533pt;}
.y39{bottom:563.749600pt;}
.y106{bottom:564.737067pt;}
.ye8{bottom:567.937067pt;}
.yb6{bottom:572.737067pt;}
.y5f{bottom:577.536933pt;}
.y85{bottom:577.537067pt;}
.y105{bottom:580.737067pt;}
.yb{bottom:582.440533pt;}
.y38{bottom:583.818933pt;}
.ye7{bottom:583.937067pt;}
.yb5{bottom:588.737067pt;}
.y5e{bottom:595.136933pt;}
.y84{bottom:595.137067pt;}
.y37{bottom:598.218933pt;}
.ye6{bottom:599.937067pt;}
.yb4{bottom:604.737067pt;}
.y36{bottom:612.618933pt;}
.y5d{bottom:612.736933pt;}
.y83{bottom:612.737067pt;}
.ya{bottom:612.979067pt;}
.ye5{bottom:615.937067pt;}
.yb3{bottom:620.737067pt;}
.y35{bottom:627.018933pt;}
.y5c{bottom:630.336933pt;}
.y82{bottom:630.337067pt;}
.yb2{bottom:636.737067pt;}
.y9{bottom:638.312400pt;}
.y34{bottom:641.418933pt;}
.y5b{bottom:647.937067pt;}
.yb1{bottom:652.737067pt;}
.y33{bottom:655.818933pt;}
.ya9{bottom:660.737067pt;}
.y8{bottom:663.645733pt;}
.y5a{bottom:665.536933pt;}
.y81{bottom:665.537067pt;}
.yb0{bottom:668.737067pt;}
.y32{bottom:670.218933pt;}
.ya8{bottom:676.737067pt;}
.y80{bottom:683.137067pt;}
.y31{bottom:684.618933pt;}
.ya7{bottom:692.737067pt;}
.y9c{bottom:694.337067pt;}
.y30{bottom:699.018933pt;}
.y7f{bottom:700.737067pt;}
.y59{bottom:707.606267pt;}
.ya6{bottom:708.737067pt;}
.y9b{bottom:710.337067pt;}
.y2f{bottom:713.418933pt;}
.y7e{bottom:718.337067pt;}
.y58{bottom:723.606267pt;}
.ya5{bottom:724.737067pt;}
.y9a{bottom:726.337067pt;}
.y2e{bottom:727.818933pt;}
.y7d{bottom:735.937067pt;}
.y57{bottom:739.606267pt;}
.ya4{bottom:740.737067pt;}
.y2d{bottom:742.218933pt;}
.y99{bottom:742.337067pt;}
.y7c{bottom:753.537067pt;}
.y56{bottom:755.606267pt;}
.y2c{bottom:756.618933pt;}
.ya3{bottom:756.737067pt;}
.y98{bottom:758.337067pt;}
.y7b{bottom:771.137067pt;}
.y55{bottom:771.606267pt;}
.y97{bottom:774.337067pt;}
.y3{bottom:774.413733pt;}
.y2{bottom:787.213733pt;}
.y54{bottom:787.606267pt;}
.y2b{bottom:788.026800pt;}
.y7a{bottom:788.737067pt;}
.y131{bottom:790.337067pt;}
.y53{bottom:803.606267pt;}
.yf0{bottom:806.096133pt;}
.y79{bottom:806.337067pt;}
.y2a{bottom:808.096133pt;}
.y52{bottom:819.606267pt;}
.yef{bottom:822.096133pt;}
.y29{bottom:822.496133pt;}
.y26{bottom:847.673200pt;}
.ha{height:24.913156pt;}
.h13{height:24.913690pt;}
.he{height:27.710156pt;}
.hc{height:28.589844pt;}
.h4{height:29.042969pt;}
.hd{height:32.108594pt;}
.h3{height:32.988281pt;}
.h9{height:34.684896pt;}
.hb{height:36.367188pt;}
.h7{height:36.787760pt;}
.h2{height:39.585938pt;}
.h12{height:41.345312pt;}
.h8{height:41.785156pt;}
.hf{height:43.984375pt;}
.h6{height:45.937500pt;}
.h11{height:48.382812pt;}
.h10{height:52.593750pt;}
.h5{height:71.718750pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:68.031467pt;}
.x10{left:83.149600pt;}
.x15{left:92.031467pt;}
.xd{left:94.488133pt;}
.x13{left:107.928800pt;}
.x11{left:109.606267pt;}
.x14{left:120.944933pt;}
.x3{left:135.649067pt;}
.x5{left:146.409867pt;}
.x16{left:147.401600pt;}
.x6{left:150.747600pt;}
.x7{left:154.927333pt;}
.x12{left:162.519733pt;}
.x4{left:170.336533pt;}
.xa{left:219.596667pt;}
.xe{left:285.995467pt;}
.xc{left:387.194933pt;}
.xb{left:392.810800pt;}
.x9{left:430.334533pt;}
.x8{left:452.495067pt;}
.xf{left:511.701600pt;}
.x1{left:528.514667pt;}
}




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