
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ca766d8246a28488bba86bed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a0a3ddb9571bc3a14cb12554.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_7a545846442caabbf7e373a4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_0cec78e14c2d8c83073322b4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_74ae1b0650e02a5e61a2ca90.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_c05c5bf2585a625013e9e2fc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_f4bfda7b8280352bac9d2f42.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_76332010baf5d9f2bd15b839.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.000000px;}
.v2{vertical-align:15.120000px;}
.ls29{letter-spacing:-0.513600px;}
.ls2f{letter-spacing:-0.485400px;}
.ls48{letter-spacing:-0.399000px;}
.ls31{letter-spacing:-0.378600px;}
.ls47{letter-spacing:-0.368400px;}
.ls43{letter-spacing:-0.244200px;}
.ls13{letter-spacing:-0.243600px;}
.ls2a{letter-spacing:-0.232800px;}
.ls26{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.178800px;}
.ls2c{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.160800px;}
.ls53{letter-spacing:-0.159600px;}
.ls14{letter-spacing:-0.153600px;}
.lsd{letter-spacing:-0.135000px;}
.ls45{letter-spacing:-0.134400px;}
.ls46{letter-spacing:-0.132000px;}
.ls17{letter-spacing:-0.125400px;}
.ls30{letter-spacing:-0.124200px;}
.ls12{letter-spacing:-0.121200px;}
.ls52{letter-spacing:-0.096600px;}
.lsc{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.084600px;}
.ls10{letter-spacing:-0.063600px;}
.ls4b{letter-spacing:-0.045720px;}
.ls1b{letter-spacing:-0.039000px;}
.ls41{letter-spacing:-0.038880px;}
.ls2e{letter-spacing:-0.018360px;}
.ls4e{letter-spacing:-0.014760px;}
.ls4f{letter-spacing:-0.013320px;}
.ls19{letter-spacing:-0.011400px;}
.ls27{letter-spacing:-0.011160px;}
.ls2b{letter-spacing:-0.008280px;}
.ls32{letter-spacing:-0.003240px;}
.lse{letter-spacing:-0.002400px;}
.lsa{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.016200px;}
.ls1d{letter-spacing:0.045360px;}
.ls1f{letter-spacing:0.048960px;}
.ls21{letter-spacing:0.051120px;}
.ls3c{letter-spacing:0.064800px;}
.ls42{letter-spacing:0.068400px;}
.ls1c{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.099600px;}
.ls33{letter-spacing:0.113400px;}
.ls22{letter-spacing:0.115800px;}
.ls18{letter-spacing:0.116400px;}
.ls24{letter-spacing:0.127200px;}
.ls7{letter-spacing:0.143400px;}
.lsb{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.173400px;}
.lsf{letter-spacing:0.174600px;}
.ls3b{letter-spacing:0.177000px;}
.ls4{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.180600px;}
.ls28{letter-spacing:0.181200px;}
.ls1a{letter-spacing:0.199200px;}
.ls2d{letter-spacing:0.202200px;}
.ls0{letter-spacing:0.360000px;}
.ls4a{letter-spacing:0.394200px;}
.ls44{letter-spacing:0.541200px;}
.ls37{letter-spacing:0.813600px;}
.ls49{letter-spacing:1.166400px;}
.ls38{letter-spacing:1.173600px;}
.ls36{letter-spacing:1.533600px;}
.ls5{letter-spacing:1.886400px;}
.ls4d{letter-spacing:2.253600px;}
.ls6{letter-spacing:2.973600px;}
.ls34{letter-spacing:5.133600px;}
.ls4c{letter-spacing:6.933600px;}
.ls1e{letter-spacing:8.373600px;}
.ls23{letter-spacing:9.453600px;}
.ls8{letter-spacing:11.606400px;}
.ls20{letter-spacing:13.413600px;}
.ls39{letter-spacing:14.126400px;}
.ls3a{letter-spacing:16.653600px;}
.ls3e{letter-spacing:17.373600px;}
.ls3f{letter-spacing:17.733600px;}
.ls9{letter-spacing:20.966400px;}
.ls51{letter-spacing:47.726640px;}
.ls3d{letter-spacing:63.566640px;}
.ls50{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1b{word-spacing:-60.120000px;}
.ws2f{word-spacing:-59.988000px;}
.ws2e{word-spacing:-59.985600px;}
.ws2{word-spacing:-18.453600px;}
.ws32{word-spacing:-14.887800px;}
.ws5{word-spacing:-14.493600px;}
.ws33{word-spacing:-14.447880px;}
.ws13{word-spacing:-14.372400px;}
.ws2d{word-spacing:-13.767600px;}
.ws1c{word-spacing:-13.428600px;}
.wse{word-spacing:-13.425600px;}
.ws15{word-spacing:-13.407600px;}
.ws29{word-spacing:-13.407000px;}
.ws2c{word-spacing:-13.403400px;}
.ws11{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.369800px;}
.ws25{word-spacing:-13.353600px;}
.wsc{word-spacing:-13.342800px;}
.ws22{word-spacing:-13.342200px;}
.ws24{word-spacing:-13.339800px;}
.ws2a{word-spacing:-13.294800px;}
.ws1e{word-spacing:-13.277520px;}
.ws18{word-spacing:-13.275360px;}
.ws26{word-spacing:-13.242600px;}
.ws3{word-spacing:-13.226400px;}
.ws23{word-spacing:-13.223160px;}
.ws19{word-spacing:-13.218120px;}
.ws14{word-spacing:-13.215240px;}
.wsd{word-spacing:-13.215000px;}
.ws35{word-spacing:-13.213080px;}
.ws34{word-spacing:-13.211640px;}
.ws1d{word-spacing:-13.208040px;}
.ws28{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.187400px;}
.ws27{word-spacing:-13.162800px;}
.ws36{word-spacing:-13.129800px;}
.ws20{word-spacing:-13.102200px;}
.wsb{word-spacing:-13.101000px;}
.ws7{word-spacing:-13.072800px;}
.ws37{word-spacing:-13.066800px;}
.ws8{word-spacing:-13.065600px;}
.ws1a{word-spacing:-13.064400px;}
.wsa{word-spacing:-13.047600px;}
.ws12{word-spacing:-13.039800px;}
.ws17{word-spacing:-12.993600px;}
.ws6{word-spacing:-12.982800px;}
.ws2b{word-spacing:-12.982200px;}
.ws30{word-spacing:-12.858000px;}
.ws21{word-spacing:-12.847800px;}
.ws31{word-spacing:-12.827400px;}
.ws1f{word-spacing:-12.741000px;}
.ws16{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws10{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._15{margin-left:-5.024280px;}
._10{margin-left:-3.851760px;}
._3{margin-left:-2.256600px;}
._0{margin-left:-1.110000px;}
._2{width:1.175160px;}
._7{width:2.946000px;}
._b{width:4.191840px;}
._c{width:5.832245px;}
._9{width:6.983159px;}
._8{width:7.996200px;}
._f{width:9.312241px;}
._a{width:10.315080px;}
._6{width:11.362800px;}
._4{width:14.609400px;}
._5{width:15.691554px;}
._11{width:16.914861px;}
._d{width:18.491040px;}
._e{width:19.553640px;}
._12{width:21.484200px;}
._1{width:22.888080px;}
._13{width:26.262360px;}
._14{width:27.609240px;}
._17{width:29.437200px;}
._16{width:30.526200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y56{bottom:119.640000px;}
.y9e{bottom:120.360000px;}
.y83{bottom:129.000000px;}
.yc7{bottom:130.260000px;}
.y9d{bottom:137.910000px;}
.yc6{bottom:147.810000px;}
.y118{bottom:148.890000px;}
.y55{bottom:155.280000px;}
.y82{bottom:164.550000px;}
.y9c{bottom:164.820000px;}
.yc5{bottom:165.360000px;}
.y117{bottom:166.440000px;}
.y26{bottom:176.340000px;}
.yee{bottom:178.860000px;}
.y81{bottom:182.190000px;}
.y142{bottom:186.510000px;}
.y54{bottom:187.050000px;}
.yc4{bottom:192.000000px;}
.y116{bottom:193.080000px;}
.y25{bottom:193.980000px;}
.y141{bottom:204.060000px;}
.y53{bottom:204.600000px;}
.y80{bottom:208.740000px;}
.y115{bottom:210.630000px;}
.y24{bottom:211.530000px;}
.y9b{bottom:213.150000px;}
.yed{bottom:214.500000px;}
.y52{bottom:222.240000px;}
.yc3{bottom:227.550000px;}
.y114{bottom:228.180000px;}
.y23{bottom:229.170000px;}
.y140{bottom:230.610000px;}
.y9a{bottom:230.700000px;}
.yec{bottom:232.050000px;}
.y51{bottom:239.790000px;}
.y7f{bottom:244.290000px;}
.yc2{bottom:245.190000px;}
.y22{bottom:246.720000px;}
.y99{bottom:248.340000px;}
.yeb{bottom:249.600000px;}
.y113{bottom:254.820000px;}
.y13f{bottom:257.250000px;}
.y7e{bottom:261.840000px;}
.yc1{bottom:262.740000px;}
.y21{bottom:264.270000px;}
.y98{bottom:265.890000px;}
.y50{bottom:266.700000px;}
.yea{bottom:267.240000px;}
.y112{bottom:272.370000px;}
.y13e{bottom:274.800000px;}
.y7d{bottom:280.290000px;}
.y20{bottom:281.910000px;}
.y97{bottom:284.250000px;}
.ye9{bottom:284.790000px;}
.yc0{bottom:289.290000px;}
.y7c{bottom:298.740000px;}
.y111{bottom:299.010000px;}
.y1f{bottom:299.460000px;}
.y13d{bottom:301.440000px;}
.ye8{bottom:302.430000px;}
.y96{bottom:302.700000px;}
.y4f{bottom:314.940000px;}
.y110{bottom:316.560000px;}
.y1e{bottom:317.100000px;}
.y13c{bottom:318.990000px;}
.ye7{bottom:319.980000px;}
.y95{bottom:320.250000px;}
.ybf{bottom:324.930000px;}
.y4e{bottom:332.580000px;}
.y1d{bottom:334.650000px;}
.y7b{bottom:335.190000px;}
.y13b{bottom:336.540000px;}
.ye6{bottom:337.530000px;}
.ybe{bottom:342.480000px;}
.y10f{bottom:343.110000px;}
.y4d{bottom:350.130000px;}
.y7a{bottom:352.740000px;}
.y13a{bottom:354.180000px;}
.y94{bottom:356.700000px;}
.ybd{bottom:360.120000px;}
.y10e{bottom:360.750000px;}
.ye5{bottom:364.440000px;}
.y4c{bottom:367.770000px;}
.y1c{bottom:370.200000px;}
.y79{bottom:370.290000px;}
.y93{bottom:374.250000px;}
.y10d{bottom:378.300000px;}
.y139{bottom:380.730000px;}
.ybc{bottom:386.670000px;}
.y1b{bottom:387.840000px;}
.y78{bottom:387.930000px;}
.y92{bottom:391.890000px;}
.y138{bottom:398.370000px;}
.y4b{bottom:403.320000px;}
.y10c{bottom:404.940000px;}
.y1a{bottom:405.390000px;}
.y77{bottom:405.480000px;}
.ye4{bottom:412.770000px;}
.y91{bottom:418.440000px;}
.y4a{bottom:420.870000px;}
.ybb{bottom:422.220000px;}
.y19{bottom:423.030000px;}
.y137{bottom:424.920000px;}
.ye3{bottom:430.320000px;}
.y10b{bottom:431.490000px;}
.y76{bottom:432.120000px;}
.y49{bottom:438.510000px;}
.yba{bottom:439.860000px;}
.y18{bottom:440.580000px;}
.y136{bottom:442.470000px;}
.ye2{bottom:447.870000px;}
.y10a{bottom:449.040000px;}
.y90{bottom:454.080000px;}
.y48{bottom:456.060000px;}
.y17{bottom:458.130000px;}
.yb9{bottom:466.770000px;}
.y75{bottom:467.670000px;}
.y135{bottom:469.110000px;}
.y8f{bottom:471.660000px;}
.y109{bottom:475.710000px;}
.ye1{bottom:483.540000px;}
.y16{bottom:485.070000px;}
.y74{bottom:485.250000px;}
.y134{bottom:486.690000px;}
.y8e{bottom:489.210000px;}
.y47{bottom:491.730000px;}
.ye0{bottom:501.090000px;}
.y108{bottom:502.260000px;}
.y73{bottom:502.890000px;}
.y8d{bottom:506.850000px;}
.y46{bottom:509.280000px;}
.y133{bottom:513.330000px;}
.yb8{bottom:515.040000px;}
.ydf{bottom:518.730000px;}
.y8c{bottom:524.400000px;}
.y45{bottom:526.830000px;}
.y107{bottom:528.900000px;}
.y72{bottom:529.800000px;}
.y132{bottom:530.880000px;}
.yb7{bottom:532.590000px;}
.y15{bottom:533.400000px;}
.y8b{bottom:542.040000px;}
.y44{bottom:544.470000px;}
.y106{bottom:546.450000px;}
.yb6{bottom:550.230000px;}
.y14{bottom:551.310000px;}
.yde{bottom:554.280000px;}
.y131{bottom:557.430000px;}
.y8a{bottom:559.590000px;}
.y43{bottom:571.020000px;}
.ydd{bottom:571.830000px;}
.y105{bottom:573.000000px;}
.y130{bottom:575.070000px;}
.y89{bottom:577.140000px;}
.y71{bottom:578.040000px;}
.yb5{bottom:585.780000px;}
.y13{bottom:588.300000px;}
.ydc{bottom:589.470000px;}
.y104{bottom:590.640000px;}
.y70{bottom:595.590000px;}
.y12f{bottom:601.620000px;}
.yb4{bottom:603.420000px;}
.y88{bottom:603.780000px;}
.y12{bottom:605.850000px;}
.y42{bottom:606.660000px;}
.ydb{bottom:607.020000px;}
.y6f{bottom:613.230000px;}
.y103{bottom:617.190000px;}
.y12e{bottom:619.260000px;}
.y11{bottom:623.490000px;}
.y41{bottom:624.210000px;}
.yb3{bottom:629.970000px;}
.y6e{bottom:630.780000px;}
.y87{bottom:639.330000px;}
.y10{bottom:641.040000px;}
.y40{bottom:641.760000px;}
.yda{bottom:642.660000px;}
.y102{bottom:643.830000px;}
.y12d{bottom:645.810000px;}
.y86{bottom:656.970000px;}
.y6d{bottom:657.420000px;}
.yf{bottom:658.680000px;}
.y3f{bottom:659.400000px;}
.yd9{bottom:660.210000px;}
.y101{bottom:661.380000px;}
.y12c{bottom:663.360000px;}
.yb2{bottom:665.520000px;}
.ye{bottom:676.230000px;}
.y3e{bottom:676.950000px;}
.yd8{bottom:677.760000px;}
.yb1{bottom:683.160000px;}
.y100{bottom:687.930000px;}
.y12b{bottom:690.000000px;}
.y85{bottom:692.520000px;}
.y6c{bottom:692.970000px;}
.yd{bottom:693.780000px;}
.y3d{bottom:694.590000px;}
.yd7{bottom:695.400000px;}
.yb0{bottom:700.710000px;}
.yff{bottom:705.570000px;}
.y12a{bottom:707.550000px;}
.y6b{bottom:710.520000px;}
.yc{bottom:711.420000px;}
.y3c{bottom:712.140000px;}
.yd6{bottom:712.950000px;}
.y84{bottom:724.740000px;}
.yaf{bottom:727.350000px;}
.y6a{bottom:728.160000px;}
.yb{bottom:728.970000px;}
.y3b{bottom:729.690000px;}
.yd5{bottom:730.590000px;}
.yfe{bottom:732.120000px;}
.y129{bottom:734.190000px;}
.y69{bottom:745.710000px;}
.yd4{bottom:748.140000px;}
.y128{bottom:751.740000px;}
.ya{bottom:755.880000px;}
.y3a{bottom:756.330000px;}
.yfd{bottom:758.670000px;}
.yae{bottom:762.900000px;}
.y68{bottom:763.350000px;}
.y127{bottom:769.290000px;}
.yfc{bottom:776.310000px;}
.yad{bottom:780.450000px;}
.y67{bottom:780.900000px;}
.yd3{bottom:783.690000px;}
.y39{bottom:791.880000px;}
.y126{bottom:795.930000px;}
.yd2{bottom:801.330000px;}
.y9{bottom:802.680000px;}
.yfb{bottom:802.860000px;}
.yac{bottom:807.090000px;}
.y66{bottom:807.450000px;}
.y38{bottom:809.520000px;}
.y125{bottom:813.480000px;}
.yd1{bottom:818.880000px;}
.yfa{bottom:820.500000px;}
.y37{bottom:827.070000px;}
.y124{bottom:831.030000px;}
.yd0{bottom:836.520000px;}
.y8{bottom:838.230000px;}
.yab{bottom:842.640000px;}
.y65{bottom:843.090000px;}
.y36{bottom:844.620000px;}
.yf9{bottom:847.050000px;}
.ycf{bottom:854.070000px;}
.y123{bottom:857.670000px;}
.yaa{bottom:860.280000px;}
.y64{bottom:860.640000px;}
.yf8{bottom:864.600000px;}
.yce{bottom:871.620000px;}
.y7{bottom:874.050000px;}
.y122{bottom:875.220000px;}
.ya9{bottom:877.830000px;}
.y63{bottom:878.280000px;}
.y35{bottom:880.260000px;}
.ycd{bottom:889.260000px;}
.yf7{bottom:891.240000px;}
.ya8{bottom:895.380000px;}
.y62{bottom:895.830000px;}
.y34{bottom:897.810000px;}
.y121{bottom:901.860000px;}
.ycc{bottom:906.810000px;}
.yf6{bottom:908.790000px;}
.y6{bottom:910.050000px;}
.y61{bottom:913.380000px;}
.y33{bottom:915.450000px;}
.y120{bottom:919.410000px;}
.ya7{bottom:922.020000px;}
.ycb{bottom:924.450000px;}
.y32{bottom:933.000000px;}
.yf5{bottom:935.430000px;}
.y11f{bottom:936.960000px;}
.y60{bottom:940.020000px;}
.yca{bottom:942.000000px;}
.y5{bottom:946.140000px;}
.y31{bottom:950.550000px;}
.yf4{bottom:952.980000px;}
.ya6{bottom:957.570000px;}
.yc9{bottom:959.550000px;}
.y11e{bottom:963.600000px;}
.yf3{bottom:970.530000px;}
.ya5{bottom:975.210000px;}
.y5f{bottom:975.570000px;}
.y30{bottom:977.190000px;}
.y11d{bottom:981.150000px;}
.y4{bottom:985.380000px;}
.ya4{bottom:992.760000px;}
.y5e{bottom:993.210000px;}
.yc8{bottom:994.740000px;}
.yf2{bottom:997.440000px;}
.y11c{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.ya3{bottom:1010.340000px;}
.y5d{bottom:1010.790000px;}
.y2f{bottom:1012.770000px;}
.y11b{bottom:1025.370000px;}
.y5c{bottom:1028.340000px;}
.y2e{bottom:1030.320000px;}
.ya2{bottom:1036.890000px;}
.yf1{bottom:1045.800000px;}
.y5b{bottom:1045.980000px;}
.y2d{bottom:1047.960000px;}
.y11a{bottom:1051.920000px;}
.yf0{bottom:1063.350000px;}
.y5a{bottom:1063.530000px;}
.y2c{bottom:1065.510000px;}
.ya1{bottom:1069.560000px;}
.y59{bottom:1081.170000px;}
.y2b{bottom:1083.150000px;}
.yef{bottom:1090.260000px;}
.y119{bottom:1096.110000px;}
.y2a{bottom:1100.700000px;}
.ya0{bottom:1105.110000px;}
.y58{bottom:1107.720000px;}
.y9f{bottom:1122.750000px;}
.y29{bottom:1127.610000px;}
.y57{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:30.022383px;}
.hb{height:33.830156px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.hd{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x8{left:111.239987px;}
.x5{left:122.039987px;}
.x7{left:160.199987px;}
.x2{left:202.799987px;}
.x6{left:732.389987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls29{letter-spacing:-0.456533pt;}
.ls2f{letter-spacing:-0.431467pt;}
.ls48{letter-spacing:-0.354667pt;}
.ls31{letter-spacing:-0.336533pt;}
.ls47{letter-spacing:-0.327467pt;}
.ls43{letter-spacing:-0.217067pt;}
.ls13{letter-spacing:-0.216533pt;}
.ls2a{letter-spacing:-0.206933pt;}
.ls26{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.158933pt;}
.ls2c{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.142933pt;}
.ls53{letter-spacing:-0.141867pt;}
.ls14{letter-spacing:-0.136533pt;}
.lsd{letter-spacing:-0.120000pt;}
.ls45{letter-spacing:-0.119467pt;}
.ls46{letter-spacing:-0.117333pt;}
.ls17{letter-spacing:-0.111467pt;}
.ls30{letter-spacing:-0.110400pt;}
.ls12{letter-spacing:-0.107733pt;}
.ls52{letter-spacing:-0.085867pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.075200pt;}
.ls10{letter-spacing:-0.056533pt;}
.ls4b{letter-spacing:-0.040640pt;}
.ls1b{letter-spacing:-0.034667pt;}
.ls41{letter-spacing:-0.034560pt;}
.ls2e{letter-spacing:-0.016320pt;}
.ls4e{letter-spacing:-0.013120pt;}
.ls4f{letter-spacing:-0.011840pt;}
.ls19{letter-spacing:-0.010133pt;}
.ls27{letter-spacing:-0.009920pt;}
.ls2b{letter-spacing:-0.007360pt;}
.ls32{letter-spacing:-0.002880pt;}
.lse{letter-spacing:-0.002133pt;}
.lsa{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.014400pt;}
.ls1d{letter-spacing:0.040320pt;}
.ls1f{letter-spacing:0.043520pt;}
.ls21{letter-spacing:0.045440pt;}
.ls3c{letter-spacing:0.057600pt;}
.ls42{letter-spacing:0.060800pt;}
.ls1c{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.088533pt;}
.ls33{letter-spacing:0.100800pt;}
.ls22{letter-spacing:0.102933pt;}
.ls18{letter-spacing:0.103467pt;}
.ls24{letter-spacing:0.113067pt;}
.ls7{letter-spacing:0.127467pt;}
.lsb{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.154133pt;}
.lsf{letter-spacing:0.155200pt;}
.ls3b{letter-spacing:0.157333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.160533pt;}
.ls28{letter-spacing:0.161067pt;}
.ls1a{letter-spacing:0.177067pt;}
.ls2d{letter-spacing:0.179733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4a{letter-spacing:0.350400pt;}
.ls44{letter-spacing:0.481067pt;}
.ls37{letter-spacing:0.723200pt;}
.ls49{letter-spacing:1.036800pt;}
.ls38{letter-spacing:1.043200pt;}
.ls36{letter-spacing:1.363200pt;}
.ls5{letter-spacing:1.676800pt;}
.ls4d{letter-spacing:2.003200pt;}
.ls6{letter-spacing:2.643200pt;}
.ls34{letter-spacing:4.563200pt;}
.ls4c{letter-spacing:6.163200pt;}
.ls1e{letter-spacing:7.443200pt;}
.ls23{letter-spacing:8.403200pt;}
.ls8{letter-spacing:10.316800pt;}
.ls20{letter-spacing:11.923200pt;}
.ls39{letter-spacing:12.556800pt;}
.ls3a{letter-spacing:14.803200pt;}
.ls3e{letter-spacing:15.443200pt;}
.ls3f{letter-spacing:15.763200pt;}
.ls9{letter-spacing:18.636800pt;}
.ls51{letter-spacing:42.423680pt;}
.ls3d{letter-spacing:56.503680pt;}
.ls50{letter-spacing:71.863680pt;}
.ws1b{word-spacing:-53.440000pt;}
.ws2f{word-spacing:-53.322667pt;}
.ws2e{word-spacing:-53.320533pt;}
.ws2{word-spacing:-16.403200pt;}
.ws32{word-spacing:-13.233600pt;}
.ws5{word-spacing:-12.883200pt;}
.ws33{word-spacing:-12.842560pt;}
.ws13{word-spacing:-12.775467pt;}
.ws2d{word-spacing:-12.237867pt;}
.ws1c{word-spacing:-11.936533pt;}
.wse{word-spacing:-11.933867pt;}
.ws15{word-spacing:-11.917867pt;}
.ws29{word-spacing:-11.917333pt;}
.ws2c{word-spacing:-11.914133pt;}
.ws11{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.884267pt;}
.ws25{word-spacing:-11.869867pt;}
.wsc{word-spacing:-11.860267pt;}
.ws22{word-spacing:-11.859733pt;}
.ws24{word-spacing:-11.857600pt;}
.ws2a{word-spacing:-11.817600pt;}
.ws1e{word-spacing:-11.802240pt;}
.ws18{word-spacing:-11.800320pt;}
.ws26{word-spacing:-11.771200pt;}
.ws3{word-spacing:-11.756800pt;}
.ws23{word-spacing:-11.753920pt;}
.ws19{word-spacing:-11.749440pt;}
.ws14{word-spacing:-11.746880pt;}
.wsd{word-spacing:-11.746667pt;}
.ws35{word-spacing:-11.744960pt;}
.ws34{word-spacing:-11.743680pt;}
.ws1d{word-spacing:-11.740480pt;}
.ws28{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.722133pt;}
.ws27{word-spacing:-11.700267pt;}
.ws36{word-spacing:-11.670933pt;}
.ws20{word-spacing:-11.646400pt;}
.wsb{word-spacing:-11.645333pt;}
.ws7{word-spacing:-11.620267pt;}
.ws37{word-spacing:-11.614933pt;}
.ws8{word-spacing:-11.613867pt;}
.ws1a{word-spacing:-11.612800pt;}
.wsa{word-spacing:-11.597867pt;}
.ws12{word-spacing:-11.590933pt;}
.ws17{word-spacing:-11.549867pt;}
.ws6{word-spacing:-11.540267pt;}
.ws2b{word-spacing:-11.539733pt;}
.ws30{word-spacing:-11.429333pt;}
.ws21{word-spacing:-11.420267pt;}
.ws31{word-spacing:-11.402133pt;}
.ws1f{word-spacing:-11.325333pt;}
.ws16{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws10{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._15{margin-left:-4.466027pt;}
._10{margin-left:-3.423787pt;}
._3{margin-left:-2.005866pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.044587pt;}
._7{width:2.618667pt;}
._b{width:3.726080pt;}
._c{width:5.184218pt;}
._9{width:6.207252pt;}
._8{width:7.107734pt;}
._f{width:8.277548pt;}
._a{width:9.168960pt;}
._6{width:10.100267pt;}
._4{width:12.986134pt;}
._5{width:13.948048pt;}
._11{width:15.035432pt;}
._d{width:16.436480pt;}
._e{width:17.381013pt;}
._12{width:19.097067pt;}
._1{width:20.344960pt;}
._13{width:23.344320pt;}
._14{width:24.541547pt;}
._17{width:26.166400pt;}
._16{width:27.134400pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y56{bottom:106.346667pt;}
.y9e{bottom:106.986667pt;}
.y83{bottom:114.666667pt;}
.yc7{bottom:115.786667pt;}
.y9d{bottom:122.586667pt;}
.yc6{bottom:131.386667pt;}
.y118{bottom:132.346667pt;}
.y55{bottom:138.026667pt;}
.y82{bottom:146.266667pt;}
.y9c{bottom:146.506667pt;}
.yc5{bottom:146.986667pt;}
.y117{bottom:147.946667pt;}
.y26{bottom:156.746667pt;}
.yee{bottom:158.986667pt;}
.y81{bottom:161.946667pt;}
.y142{bottom:165.786667pt;}
.y54{bottom:166.266667pt;}
.yc4{bottom:170.666667pt;}
.y116{bottom:171.626667pt;}
.y25{bottom:172.426667pt;}
.y141{bottom:181.386667pt;}
.y53{bottom:181.866667pt;}
.y80{bottom:185.546667pt;}
.y115{bottom:187.226667pt;}
.y24{bottom:188.026667pt;}
.y9b{bottom:189.466667pt;}
.yed{bottom:190.666667pt;}
.y52{bottom:197.546667pt;}
.yc3{bottom:202.266667pt;}
.y114{bottom:202.826667pt;}
.y23{bottom:203.706667pt;}
.y140{bottom:204.986667pt;}
.y9a{bottom:205.066667pt;}
.yec{bottom:206.266667pt;}
.y51{bottom:213.146667pt;}
.y7f{bottom:217.146667pt;}
.yc2{bottom:217.946667pt;}
.y22{bottom:219.306667pt;}
.y99{bottom:220.746667pt;}
.yeb{bottom:221.866667pt;}
.y113{bottom:226.506667pt;}
.y13f{bottom:228.666667pt;}
.y7e{bottom:232.746667pt;}
.yc1{bottom:233.546667pt;}
.y21{bottom:234.906667pt;}
.y98{bottom:236.346667pt;}
.y50{bottom:237.066667pt;}
.yea{bottom:237.546667pt;}
.y112{bottom:242.106667pt;}
.y13e{bottom:244.266667pt;}
.y7d{bottom:249.146667pt;}
.y20{bottom:250.586667pt;}
.y97{bottom:252.666667pt;}
.ye9{bottom:253.146667pt;}
.yc0{bottom:257.146667pt;}
.y7c{bottom:265.546667pt;}
.y111{bottom:265.786667pt;}
.y1f{bottom:266.186667pt;}
.y13d{bottom:267.946667pt;}
.ye8{bottom:268.826667pt;}
.y96{bottom:269.066667pt;}
.y4f{bottom:279.946667pt;}
.y110{bottom:281.386667pt;}
.y1e{bottom:281.866667pt;}
.y13c{bottom:283.546667pt;}
.ye7{bottom:284.426667pt;}
.y95{bottom:284.666667pt;}
.ybf{bottom:288.826667pt;}
.y4e{bottom:295.626667pt;}
.y1d{bottom:297.466667pt;}
.y7b{bottom:297.946667pt;}
.y13b{bottom:299.146667pt;}
.ye6{bottom:300.026667pt;}
.ybe{bottom:304.426667pt;}
.y10f{bottom:304.986667pt;}
.y4d{bottom:311.226667pt;}
.y7a{bottom:313.546667pt;}
.y13a{bottom:314.826667pt;}
.y94{bottom:317.066667pt;}
.ybd{bottom:320.106667pt;}
.y10e{bottom:320.666667pt;}
.ye5{bottom:323.946667pt;}
.y4c{bottom:326.906667pt;}
.y1c{bottom:329.066667pt;}
.y79{bottom:329.146667pt;}
.y93{bottom:332.666667pt;}
.y10d{bottom:336.266667pt;}
.y139{bottom:338.426667pt;}
.ybc{bottom:343.706667pt;}
.y1b{bottom:344.746667pt;}
.y78{bottom:344.826667pt;}
.y92{bottom:348.346667pt;}
.y138{bottom:354.106667pt;}
.y4b{bottom:358.506667pt;}
.y10c{bottom:359.946667pt;}
.y1a{bottom:360.346667pt;}
.y77{bottom:360.426667pt;}
.ye4{bottom:366.906667pt;}
.y91{bottom:371.946667pt;}
.y4a{bottom:374.106667pt;}
.ybb{bottom:375.306667pt;}
.y19{bottom:376.026667pt;}
.y137{bottom:377.706667pt;}
.ye3{bottom:382.506667pt;}
.y10b{bottom:383.546667pt;}
.y76{bottom:384.106667pt;}
.y49{bottom:389.786667pt;}
.yba{bottom:390.986667pt;}
.y18{bottom:391.626667pt;}
.y136{bottom:393.306667pt;}
.ye2{bottom:398.106667pt;}
.y10a{bottom:399.146667pt;}
.y90{bottom:403.626667pt;}
.y48{bottom:405.386667pt;}
.y17{bottom:407.226667pt;}
.yb9{bottom:414.906667pt;}
.y75{bottom:415.706667pt;}
.y135{bottom:416.986667pt;}
.y8f{bottom:419.253333pt;}
.y109{bottom:422.853333pt;}
.ye1{bottom:429.813333pt;}
.y16{bottom:431.173333pt;}
.y74{bottom:431.333333pt;}
.y134{bottom:432.613333pt;}
.y8e{bottom:434.853333pt;}
.y47{bottom:437.093333pt;}
.ye0{bottom:445.413333pt;}
.y108{bottom:446.453333pt;}
.y73{bottom:447.013333pt;}
.y8d{bottom:450.533333pt;}
.y46{bottom:452.693333pt;}
.y133{bottom:456.293333pt;}
.yb8{bottom:457.813333pt;}
.ydf{bottom:461.093333pt;}
.y8c{bottom:466.133333pt;}
.y45{bottom:468.293333pt;}
.y107{bottom:470.133333pt;}
.y72{bottom:470.933333pt;}
.y132{bottom:471.893333pt;}
.yb7{bottom:473.413333pt;}
.y15{bottom:474.133333pt;}
.y8b{bottom:481.813333pt;}
.y44{bottom:483.973333pt;}
.y106{bottom:485.733333pt;}
.yb6{bottom:489.093333pt;}
.y14{bottom:490.053333pt;}
.yde{bottom:492.693333pt;}
.y131{bottom:495.493333pt;}
.y8a{bottom:497.413333pt;}
.y43{bottom:507.573333pt;}
.ydd{bottom:508.293333pt;}
.y105{bottom:509.333333pt;}
.y130{bottom:511.173333pt;}
.y89{bottom:513.013333pt;}
.y71{bottom:513.813333pt;}
.yb5{bottom:520.693333pt;}
.y13{bottom:522.933333pt;}
.ydc{bottom:523.973333pt;}
.y104{bottom:525.013333pt;}
.y70{bottom:529.413333pt;}
.y12f{bottom:534.773333pt;}
.yb4{bottom:536.373333pt;}
.y88{bottom:536.693333pt;}
.y12{bottom:538.533333pt;}
.y42{bottom:539.253333pt;}
.ydb{bottom:539.573333pt;}
.y6f{bottom:545.093333pt;}
.y103{bottom:548.613333pt;}
.y12e{bottom:550.453333pt;}
.y11{bottom:554.213333pt;}
.y41{bottom:554.853333pt;}
.yb3{bottom:559.973333pt;}
.y6e{bottom:560.693333pt;}
.y87{bottom:568.293333pt;}
.y10{bottom:569.813333pt;}
.y40{bottom:570.453333pt;}
.yda{bottom:571.253333pt;}
.y102{bottom:572.293333pt;}
.y12d{bottom:574.053333pt;}
.y86{bottom:583.973333pt;}
.y6d{bottom:584.373333pt;}
.yf{bottom:585.493333pt;}
.y3f{bottom:586.133333pt;}
.yd9{bottom:586.853333pt;}
.y101{bottom:587.893333pt;}
.y12c{bottom:589.653333pt;}
.yb2{bottom:591.573333pt;}
.ye{bottom:601.093333pt;}
.y3e{bottom:601.733333pt;}
.yd8{bottom:602.453333pt;}
.yb1{bottom:607.253333pt;}
.y100{bottom:611.493333pt;}
.y12b{bottom:613.333333pt;}
.y85{bottom:615.573333pt;}
.y6c{bottom:615.973333pt;}
.yd{bottom:616.693333pt;}
.y3d{bottom:617.413333pt;}
.yd7{bottom:618.133333pt;}
.yb0{bottom:622.853333pt;}
.yff{bottom:627.173333pt;}
.y12a{bottom:628.933333pt;}
.y6b{bottom:631.573333pt;}
.yc{bottom:632.373333pt;}
.y3c{bottom:633.013333pt;}
.yd6{bottom:633.733333pt;}
.y84{bottom:644.213333pt;}
.yaf{bottom:646.533333pt;}
.y6a{bottom:647.253333pt;}
.yb{bottom:647.973333pt;}
.y3b{bottom:648.613333pt;}
.yd5{bottom:649.413333pt;}
.yfe{bottom:650.773333pt;}
.y129{bottom:652.613333pt;}
.y69{bottom:662.853333pt;}
.yd4{bottom:665.013333pt;}
.y128{bottom:668.213333pt;}
.ya{bottom:671.893333pt;}
.y3a{bottom:672.293333pt;}
.yfd{bottom:674.373333pt;}
.yae{bottom:678.133333pt;}
.y68{bottom:678.533333pt;}
.y127{bottom:683.813333pt;}
.yfc{bottom:690.053333pt;}
.yad{bottom:693.733333pt;}
.y67{bottom:694.133333pt;}
.yd3{bottom:696.613333pt;}
.y39{bottom:703.893333pt;}
.y126{bottom:707.493333pt;}
.yd2{bottom:712.293333pt;}
.y9{bottom:713.493333pt;}
.yfb{bottom:713.653333pt;}
.yac{bottom:717.413333pt;}
.y66{bottom:717.733333pt;}
.y38{bottom:719.573333pt;}
.y125{bottom:723.093333pt;}
.yd1{bottom:727.893333pt;}
.yfa{bottom:729.333333pt;}
.y37{bottom:735.173333pt;}
.y124{bottom:738.693333pt;}
.yd0{bottom:743.573333pt;}
.y8{bottom:745.093333pt;}
.yab{bottom:749.013333pt;}
.y65{bottom:749.413333pt;}
.y36{bottom:750.773333pt;}
.yf9{bottom:752.933333pt;}
.ycf{bottom:759.173333pt;}
.y123{bottom:762.373333pt;}
.yaa{bottom:764.693333pt;}
.y64{bottom:765.013333pt;}
.yf8{bottom:768.533333pt;}
.yce{bottom:774.773333pt;}
.y7{bottom:776.933333pt;}
.y122{bottom:777.973333pt;}
.ya9{bottom:780.293333pt;}
.y63{bottom:780.693333pt;}
.y35{bottom:782.453333pt;}
.ycd{bottom:790.453333pt;}
.yf7{bottom:792.213333pt;}
.ya8{bottom:795.893333pt;}
.y62{bottom:796.293333pt;}
.y34{bottom:798.053333pt;}
.y121{bottom:801.653333pt;}
.ycc{bottom:806.053333pt;}
.yf6{bottom:807.813333pt;}
.y6{bottom:808.933333pt;}
.y61{bottom:811.893333pt;}
.y33{bottom:813.733333pt;}
.y120{bottom:817.253333pt;}
.ya7{bottom:819.573333pt;}
.ycb{bottom:821.733333pt;}
.y32{bottom:829.333333pt;}
.yf5{bottom:831.493333pt;}
.y11f{bottom:832.853333pt;}
.y60{bottom:835.573333pt;}
.yca{bottom:837.333333pt;}
.y5{bottom:841.013333pt;}
.y31{bottom:844.933333pt;}
.yf4{bottom:847.093333pt;}
.ya6{bottom:851.173333pt;}
.yc9{bottom:852.933333pt;}
.y11e{bottom:856.533333pt;}
.yf3{bottom:862.693333pt;}
.ya5{bottom:866.853333pt;}
.y5f{bottom:867.173333pt;}
.y30{bottom:868.613333pt;}
.y11d{bottom:872.133333pt;}
.y4{bottom:875.893333pt;}
.ya4{bottom:882.453333pt;}
.y5e{bottom:882.853333pt;}
.yc8{bottom:884.213333pt;}
.yf2{bottom:886.613333pt;}
.y11c{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.ya3{bottom:898.080000pt;}
.y5d{bottom:898.480000pt;}
.y2f{bottom:900.240000pt;}
.y11b{bottom:911.440000pt;}
.y5c{bottom:914.080000pt;}
.y2e{bottom:915.840000pt;}
.ya2{bottom:921.680000pt;}
.yf1{bottom:929.600000pt;}
.y5b{bottom:929.760000pt;}
.y2d{bottom:931.520000pt;}
.y11a{bottom:935.040000pt;}
.yf0{bottom:945.200000pt;}
.y5a{bottom:945.360000pt;}
.y2c{bottom:947.120000pt;}
.ya1{bottom:950.720000pt;}
.y59{bottom:961.040000pt;}
.y2b{bottom:962.800000pt;}
.yef{bottom:969.120000pt;}
.y119{bottom:974.320000pt;}
.y2a{bottom:978.400000pt;}
.ya0{bottom:982.320000pt;}
.y58{bottom:984.640000pt;}
.y9f{bottom:998.000000pt;}
.y29{bottom:1002.320000pt;}
.y57{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.hb{height:30.071250pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.hd{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x8{left:98.879988pt;}
.x5{left:108.479988pt;}
.x7{left:142.399988pt;}
.x2{left:180.266655pt;}
.x6{left:651.013322pt;}
.x3{left:704.053322pt;}
}




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