
    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_2880293298ebcf407eef6762.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_80b3785ec3a4c2b26f4edcdd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992188;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_640018433b12553c710b4706.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_74b50543333e36d258389d3b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.229000;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_65521494335a33f6cad77324.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.669434;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_1656143820c36b886c05f6c7.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_97a0bea8635f5f9fe252e067.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.252000;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_e8026ff03b594b6d1dd5fb11.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-20.863440px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.801760px;}
.ls3{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.172800px;}
.ls9{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.720000px;}
.ls0{letter-spacing:2.406000px;}
.ls8{letter-spacing:28.224000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(46,116,181),0 0.015em rgb(46,116,181),0.015em 0 rgb(46,116,181),0 -0.015em  rgb(46,116,181);}
.sc1{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);}
.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(46,116,181);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-20.016000px;}
.wsc{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.wsd{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws18{word-spacing:-11.609280px;}
.ws19{word-spacing:-8.786880px;}
.ws8{word-spacing:-2.406000px;}
.ws1{word-spacing:-1.914000px;}
.ws5{word-spacing:-1.662000px;}
.ws4{word-spacing:-1.656000px;}
.ws6{word-spacing:-1.356000px;}
.ws2{word-spacing:-0.942000px;}
.ws3{word-spacing:-0.936000px;}
.ws9{word-spacing:-0.798000px;}
.ws7{word-spacing:-0.336000px;}
.wsa{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.144000px;}
.ws10{word-spacing:0.288000px;}
.wsb{word-spacing:0.468000px;}
.ws14{word-spacing:0.576000px;}
.ws13{word-spacing:0.720000px;}
.ws12{word-spacing:1.440000px;}
.ws16{word-spacing:27.936000px;}
._28{margin-left:-12.369600px;}
._15{margin-left:-5.472000px;}
._11{margin-left:-3.600000px;}
._0{margin-left:-2.580000px;}
._3{margin-left:-1.080000px;}
._2{width:1.152000px;}
._1{width:2.561952px;}
._4{width:3.732096px;}
._d{width:5.112000px;}
._1e{width:6.120000px;}
._14{width:7.128000px;}
._13{width:8.496000px;}
._12{width:9.792000px;}
._22{width:10.800000px;}
._e{width:11.880000px;}
._18{width:12.888000px;}
._16{width:13.968000px;}
._c{width:15.768000px;}
._8{width:17.640000px;}
._9{width:18.648000px;}
._1f{width:21.168000px;}
._23{width:22.176000px;}
._20{width:23.544000px;}
._1a{width:24.840000px;}
._19{width:26.208000px;}
._1b{width:28.080000px;}
._17{width:29.232000px;}
._b{width:30.816000px;}
._a{width:31.968000px;}
._21{width:33.480000px;}
._24{width:35.208000px;}
._10{width:36.288000px;}
._f{width:37.728000px;}
._7{width:39.240000px;}
._6{width:40.320000px;}
._1c{width:41.472000px;}
._2c{width:43.272000px;}
._2f{width:45.000000px;}
._1d{width:46.296000px;}
._5{width:47.952000px;}
._25{width:49.968000px;}
._2e{width:51.552000px;}
._2d{width:52.632000px;}
._32{width:54.288000px;}
._27{width:55.440000px;}
._26{width:56.592000px;}
._2b{width:73.008000px;}
._29{width:74.304000px;}
._2a{width:75.312000px;}
._37{width:84.960000px;}
._36{width:86.832000px;}
._35{width:112.392000px;}
._34{width:113.616000px;}
._30{width:162.000000px;}
._33{width:342.000000px;}
._31{width:414.216000px;}
._38{width:863.352000px;}
._39{width:892.080000px;}
._3a{width:893.160000px;}
.fc1{color:rgb(46,116,181);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:57.728160px;}
.y41{bottom:77.533920px;}
.y37{bottom:77.533950px;}
.yfb{bottom:110.107800px;}
.y168{bottom:114.246000px;}
.yf6{bottom:115.335000px;}
.ye1{bottom:115.697160px;}
.yb9{bottom:116.046000px;}
.y100{bottom:116.586000px;}
.y14d{bottom:117.306000px;}
.yc6{bottom:127.926000px;}
.yfa{bottom:128.469060px;}
.y60{bottom:128.646000px;}
.ye0{bottom:129.548880px;}
.yf5{bottom:134.058240px;}
.y136{bottom:139.806000px;}
.yae{bottom:140.526000px;}
.y11b{bottom:143.406000px;}
.yf9{bottom:147.009600px;}
.yf4{bottom:148.096080px;}
.yb8{bottom:149.166000px;}
.yd0{bottom:149.706000px;}
.y14c{bottom:150.606000px;}
.ye{bottom:151.978500px;}
.y7b{bottom:152.586000px;}
.y92{bottom:158.886000px;}
.y167{bottom:159.426000px;}
.y107{bottom:159.966000px;}
.ya3{bottom:161.226000px;}
.y5f{bottom:161.766000px;}
.yf8{bottom:170.955360px;}
.yad{bottom:173.826000px;}
.y11a{bottom:176.526000px;}
.yb7{bottom:182.286000px;}
.ycf{bottom:183.006000px;}
.y14b{bottom:183.726000px;}
.y135{bottom:184.986000px;}
.yf7{bottom:184.991760px;}
.y7a{bottom:185.706000px;}
.y91{bottom:192.186000px;}
.y106{bottom:193.086000px;}
.ydf{bottom:193.806000px;}
.ya2{bottom:194.346000px;}
.y5e{bottom:194.886000px;}
.yd1{bottom:195.066000px;}
.yd{bottom:195.813000px;}
.y166{bottom:204.606000px;}
.yc5{bottom:206.406000px;}
.yac{bottom:206.946000px;}
.y119{bottom:209.826000px;}
.yb6{bottom:215.586000px;}
.yce{bottom:216.126000px;}
.yf3{bottom:216.486000px;}
.y134{bottom:218.106000px;}
.y79{bottom:219.006000px;}
.y36{bottom:219.780000px;}
.y90{bottom:225.306000px;}
.y105{bottom:226.206000px;}
.yde{bottom:226.926000px;}
.ya1{bottom:227.466000px;}
.y5d{bottom:228.186000px;}
.y14a{bottom:228.906000px;}
.yc4{bottom:239.526000px;}
.yc{bottom:239.647500px;}
.ycc{bottom:240.066000px;}
.y35{bottom:240.480000px;}
.y118{bottom:242.946000px;}
.y165{bottom:248.002560px;}
.yb5{bottom:248.706000px;}
.yff{bottom:249.246000px;}
.yf2{bottom:249.606000px;}
.y133{bottom:251.406000px;}
.y78{bottom:252.126000px;}
.y8f{bottom:258.606000px;}
.y104{bottom:259.506000px;}
.ydd{bottom:260.046000px;}
.ya0{bottom:260.766000px;}
.y34{bottom:261.180000px;}
.y5c{bottom:261.306000px;}
.y149{bottom:262.926000px;}
.yc3{bottom:272.646000px;}
.ycb{bottom:273.366000px;}
.y117{bottom:276.066000px;}
.yfe{bottom:282.546000px;}
.yf1{bottom:282.906000px;}
.y132{bottom:284.526000px;}
.y77{bottom:285.246000px;}
.y164{bottom:288.309600px;}
.y9f{bottom:293.886000px;}
.y5b{bottom:294.606000px;}
.y148{bottom:296.766000px;}
.y122{bottom:297.306000px;}
.y33{bottom:299.880000px;}
.y8e{bottom:303.786000px;}
.ydc{bottom:305.226000px;}
.y103{bottom:305.406000px;}
.yc2{bottom:305.946000px;}
.yca{bottom:306.486000px;}
.y116{bottom:309.366000px;}
.yfd{bottom:315.666000px;}
.yf0{bottom:316.026000px;}
.y76{bottom:318.546000px;}
.y32{bottom:320.580000px;}
.y9e{bottom:327.006000px;}
.y5a{bottom:327.726000px;}
.y121{bottom:330.606000px;}
.ydb{bottom:338.526000px;}
.yc1{bottom:339.066000px;}
.y102{bottom:339.246000px;}
.ycd{bottom:339.786000px;}
.y31{bottom:341.280000px;}
.y147{bottom:341.766000px;}
.y115{bottom:342.486000px;}
.y8d{bottom:348.966000px;}
.yef{bottom:349.146000px;}
.y75{bottom:351.666000px;}
.y9d{bottom:360.306000px;}
.yb0{bottom:360.846000px;}
.yb4{bottom:361.026000px;}
.y30{bottom:361.980000px;}
.y120{bottom:363.726000px;}
.y163{bottom:363.906000px;}
.yda{bottom:371.646000px;}
.yc0{bottom:372.186000px;}
.y59{bottom:372.906000px;}
.y101{bottom:373.086000px;}
.y146{bottom:374.886000px;}
.y131{bottom:375.606000px;}
.y114{bottom:375.786000px;}
.y8c{bottom:382.086000px;}
.y2f{bottom:382.680000px;}
.yee{bottom:383.166000px;}
.y74{bottom:384.966000px;}
.yb{bottom:387.283500px;}
.yaf{bottom:394.146000px;}
.y11f{bottom:396.846000px;}
.y162{bottom:397.026000px;}
.y2e{bottom:403.380000px;}
.yd9{bottom:404.766000px;}
.y9c{bottom:405.486000px;}
.y58{bottom:406.026000px;}
.y145{bottom:408.006000px;}
.y113{bottom:408.906000px;}
.y130{bottom:409.446000px;}
.y8b{bottom:415.206000px;}
.yed{bottom:417.006000px;}
.y73{bottom:418.086000px;}
.y2d{bottom:424.080000px;}
.ya{bottom:424.165500px;}
.yb3{bottom:427.266000px;}
.y11e{bottom:430.146000px;}
.yd8{bottom:438.066000px;}
.y9b{bottom:438.606000px;}
.y57{bottom:439.326000px;}
.y112{bottom:442.026000px;}
.y161{bottom:442.206000px;}
.y12f{bottom:443.286000px;}
.y2c{bottom:444.780000px;}
.y8a{bottom:448.506000px;}
.y72{bottom:451.206000px;}
.y144{bottom:454.086000px;}
.yb2{bottom:460.386000px;}
.yec{bottom:462.006000px;}
.y11d{bottom:463.266000px;}
.y2b{bottom:465.480000px;}
.y9{bottom:465.561000px;}
.yd7{bottom:471.186000px;}
.y9a{bottom:471.726000px;}
.y56{bottom:472.446000px;}
.y111{bottom:475.326000px;}
.y160{bottom:476.226000px;}
.ybf{bottom:483.786000px;}
.y71{bottom:484.506000px;}
.y2a{bottom:486.180000px;}
.y143{bottom:487.026000px;}
.y12e{bottom:488.286000px;}
.y89{bottom:493.686000px;}
.yeb{bottom:495.126000px;}
.y11c{bottom:496.386000px;}
.y8{bottom:500.613000px;}
.yd6{bottom:504.306000px;}
.y99{bottom:505.026000px;}
.y55{bottom:505.566000px;}
.y29{bottom:506.880000px;}
.y110{bottom:508.446000px;}
.y15f{bottom:510.066000px;}
.ybe{bottom:516.906000px;}
.y70{bottom:517.626000px;}
.y12d{bottom:522.306000px;}
.y88{bottom:526.806000px;}
.y28{bottom:527.580000px;}
.yea{bottom:528.426000px;}
.yab{bottom:529.686000px;}
.y142{bottom:532.206000px;}
.yd5{bottom:537.606000px;}
.y98{bottom:538.146000px;}
.y54{bottom:538.866000px;}
.y7{bottom:539.535000px;}
.y10f{bottom:541.566000px;}
.y27{bottom:548.280000px;}
.ybd{bottom:550.206000px;}
.y6f{bottom:550.746000px;}
.y15e{bottom:555.066000px;}
.y87{bottom:559.926000px;}
.ye9{bottom:561.546000px;}
.yaa{bottom:562.806000px;}
.y6{bottom:563.304000px;}
.y141{bottom:566.226000px;}
.y12c{bottom:567.306000px;}
.y26{bottom:568.980000px;}
.y97{bottom:571.446000px;}
.y53{bottom:571.986000px;}
.y10e{bottom:574.866000px;}
.yd4{bottom:582.786000px;}
.ybc{bottom:583.326000px;}
.y6e{bottom:584.046000px;}
.y15d{bottom:588.186000px;}
.y25{bottom:589.680000px;}
.y86{bottom:593.226000px;}
.ye8{bottom:594.666000px;}
.ya9{bottom:595.926000px;}
.y140{bottom:600.066000px;}
.y12b{bottom:600.426000px;}
.y96{bottom:604.566000px;}
.y52{bottom:605.106000px;}
.y10d{bottom:607.986000px;}
.y24{bottom:610.380000px;}
.yd3{bottom:616.806000px;}
.y6d{bottom:617.166000px;}
.ybb{bottom:617.346000px;}
.y15c{bottom:622.206000px;}
.y85{bottom:626.346000px;}
.ye7{bottom:627.966000px;}
.ya8{bottom:629.226000px;}
.y23{bottom:631.080000px;}
.y95{bottom:637.686000px;}
.y51{bottom:638.406000px;}
.y10c{bottom:641.106000px;}
.y13f{bottom:645.066000px;}
.y12a{bottom:645.606000px;}
.yba{bottom:650.286000px;}
.yd2{bottom:650.466000px;}
.y15b{bottom:656.046000px;}
.y5{bottom:656.250000px;}
.y84{bottom:659.466000px;}
.ye6{bottom:661.086000px;}
.y6c{bottom:662.346000px;}
.yb1{bottom:671.526000px;}
.y10b{bottom:674.406000px;}
.y13e{bottom:678.186000px;}
.y129{bottom:679.626000px;}
.y94{bottom:682.866000px;}
.y50{bottom:683.586000px;}
.ye5{bottom:694.206000px;}
.y6b{bottom:695.466000px;}
.y15a{bottom:701.046000px;}
.y83{bottom:704.646000px;}
.y10a{bottom:707.526000px;}
.y22{bottom:708.480000px;}
.y13d{bottom:711.486000px;}
.y128{bottom:712.566000px;}
.y4f{bottom:716.706000px;}
.y93{bottom:716.886000px;}
.ye4{bottom:727.506000px;}
.y6a{bottom:728.766000px;}
.y21{bottom:729.180000px;}
.y159{bottom:734.166000px;}
.y82{bottom:737.946000px;}
.y109{bottom:740.646000px;}
.y4e{bottom:749.826000px;}
.y20{bottom:749.880000px;}
.y4{bottom:753.543000px;}
.y13c{bottom:757.386000px;}
.y127{bottom:757.926000px;}
.ye3{bottom:761.526000px;}
.y69{bottom:761.886000px;}
.y158{bottom:768.186000px;}
.y81{bottom:771.066000px;}
.y108{bottom:773.946000px;}
.y4d{bottom:783.126000px;}
.y1f{bottom:788.580000px;}
.y126{bottom:791.046000px;}
.y13b{bottom:791.226000px;}
.y68{bottom:795.006000px;}
.ye2{bottom:795.186000px;}
.y157{bottom:802.026000px;}
.y80{bottom:804.186000px;}
.yc9{bottom:807.066000px;}
.y1e{bottom:809.280000px;}
.y40{bottom:811.026000px;}
.y4c{bottom:816.246000px;}
.y67{bottom:828.306000px;}
.y3{bottom:829.579500px;}
.y1d{bottom:829.980000px;}
.y13a{bottom:836.226000px;}
.y125{bottom:836.946000px;}
.y7f{bottom:837.486000px;}
.yc8{bottom:840.186000px;}
.y3f{bottom:844.326000px;}
.y156{bottom:847.026000px;}
.y4b{bottom:849.366000px;}
.y1c{bottom:850.680000px;}
.y66{bottom:861.426000px;}
.y124{bottom:870.066000px;}
.y139{bottom:870.246000px;}
.y7e{bottom:870.606000px;}
.y1b{bottom:871.380000px;}
.yc7{bottom:873.486000px;}
.y3e{bottom:877.446000px;}
.y155{bottom:880.146000px;}
.y4a{bottom:882.666000px;}
.y1a{bottom:892.080000px;}
.y65{bottom:894.546000px;}
.ya7{bottom:906.606000px;}
.y3d{bottom:910.566000px;}
.y19{bottom:912.780000px;}
.y154{bottom:913.266000px;}
.y138{bottom:915.246000px;}
.y49{bottom:915.786000px;}
.y123{bottom:915.966000px;}
.y2{bottom:916.423500px;}
.y64{bottom:927.846000px;}
.y18{bottom:933.480000px;}
.ya6{bottom:939.726000px;}
.y3c{bottom:943.866000px;}
.y153{bottom:947.286000px;}
.y7d{bottom:948.906000px;}
.y137{bottom:949.086000px;}
.y17{bottom:954.180000px;}
.y1{bottom:954.790500px;}
.y48{bottom:960.966000px;}
.ya5{bottom:973.026000px;}
.y16{bottom:974.880000px;}
.y3b{bottom:976.986000px;}
.y7c{bottom:982.206000px;}
.y152{bottom:992.286000px;}
.y47{bottom:994.266000px;}
.y15{bottom:995.580000px;}
.ya4{bottom:1006.146000px;}
.y3a{bottom:1010.106000px;}
.yfc{bottom:1015.326000px;}
.y14{bottom:1016.280000px;}
.y151{bottom:1025.586000px;}
.y46{bottom:1027.386000px;}
.y13{bottom:1036.980000px;}
.y16a{bottom:1037.475000px;}
.y63{bottom:1039.446000px;}
.y39{bottom:1043.406000px;}
.y12{bottom:1057.680000px;}
.y150{bottom:1059.426000px;}
.y45{bottom:1060.506000px;}
.y62{bottom:1072.566000px;}
.y11{bottom:1078.380000px;}
.y169{bottom:1085.346000px;}
.y44{bottom:1093.806000px;}
.y10{bottom:1099.080000px;}
.y14f{bottom:1105.326000px;}
.y61{bottom:1105.686000px;}
.yf{bottom:1119.780000px;}
.y38{bottom:1130.544000px;}
.y43{bottom:1138.986000px;}
.y14e{bottom:1139.166000px;}
.hd{height:37.582560px;}
.he{height:37.596240px;}
.hf{height:37.601280px;}
.hc{height:37.641600px;}
.hb{height:44.149219px;}
.h10{height:58.505040px;}
.h5{height:63.175781px;}
.h8{height:64.848960px;}
.ha{height:70.488000px;}
.h7{height:70.664062px;}
.h3{height:72.187500px;}
.h2{height:73.705078px;}
.h4{height:84.023789px;}
.h9{height:105.732000px;}
.h0{height:1262.835000px;}
.h6{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:74.520000px;}
.xc{left:127.624500px;}
.xf{left:154.620000px;}
.x3{left:169.054500px;}
.xd{left:170.100000px;}
.x1{left:175.945500px;}
.x10{left:181.620000px;}
.x8{left:184.186500px;}
.x6{left:208.092000px;}
.x9{left:268.038000px;}
.x4{left:292.780500px;}
.x5{left:333.339000px;}
.xa{left:355.608000px;}
.x7{left:366.712500px;}
.xb{left:381.666000px;}
.x2{left:402.469500px;}
.x11{left:437.217120px;}
.xe{left:441.903600px;}
.x13{left:446.391000px;}
@media print{
.v2{vertical-align:-18.545280pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.157120pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.153600pt;}
.ls9{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.640000pt;}
.ls0{letter-spacing:2.138667pt;}
.ls8{letter-spacing:25.088000pt;}
.ws17{word-spacing:-17.792000pt;}
.wsc{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.wsd{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws18{word-spacing:-10.319360pt;}
.ws19{word-spacing:-7.810560pt;}
.ws8{word-spacing:-2.138667pt;}
.ws1{word-spacing:-1.701333pt;}
.ws5{word-spacing:-1.477333pt;}
.ws4{word-spacing:-1.472000pt;}
.ws6{word-spacing:-1.205333pt;}
.ws2{word-spacing:-0.837333pt;}
.ws3{word-spacing:-0.832000pt;}
.ws9{word-spacing:-0.709333pt;}
.ws7{word-spacing:-0.298667pt;}
.wsa{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.128000pt;}
.ws10{word-spacing:0.256000pt;}
.wsb{word-spacing:0.416000pt;}
.ws14{word-spacing:0.512000pt;}
.ws13{word-spacing:0.640000pt;}
.ws12{word-spacing:1.280000pt;}
.ws16{word-spacing:24.832000pt;}
._28{margin-left:-10.995200pt;}
._15{margin-left:-4.864000pt;}
._11{margin-left:-3.200000pt;}
._0{margin-left:-2.293333pt;}
._3{margin-left:-0.960000pt;}
._2{width:1.024000pt;}
._1{width:2.277291pt;}
._4{width:3.317419pt;}
._d{width:4.544000pt;}
._1e{width:5.440000pt;}
._14{width:6.336000pt;}
._13{width:7.552000pt;}
._12{width:8.704000pt;}
._22{width:9.600000pt;}
._e{width:10.560000pt;}
._18{width:11.456000pt;}
._16{width:12.416000pt;}
._c{width:14.016000pt;}
._8{width:15.680000pt;}
._9{width:16.576000pt;}
._1f{width:18.816000pt;}
._23{width:19.712000pt;}
._20{width:20.928000pt;}
._1a{width:22.080000pt;}
._19{width:23.296000pt;}
._1b{width:24.960000pt;}
._17{width:25.984000pt;}
._b{width:27.392000pt;}
._a{width:28.416000pt;}
._21{width:29.760000pt;}
._24{width:31.296000pt;}
._10{width:32.256000pt;}
._f{width:33.536000pt;}
._7{width:34.880000pt;}
._6{width:35.840000pt;}
._1c{width:36.864000pt;}
._2c{width:38.464000pt;}
._2f{width:40.000000pt;}
._1d{width:41.152000pt;}
._5{width:42.624000pt;}
._25{width:44.416000pt;}
._2e{width:45.824000pt;}
._2d{width:46.784000pt;}
._32{width:48.256000pt;}
._27{width:49.280000pt;}
._26{width:50.304000pt;}
._2b{width:64.896000pt;}
._29{width:66.048000pt;}
._2a{width:66.944000pt;}
._37{width:75.520000pt;}
._36{width:77.184000pt;}
._35{width:99.904000pt;}
._34{width:100.992000pt;}
._30{width:144.000000pt;}
._33{width:304.000000pt;}
._31{width:368.192000pt;}
._38{width:767.424000pt;}
._39{width:792.960000pt;}
._3a{width:793.920000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:51.313920pt;}
.y41{bottom:68.919040pt;}
.y37{bottom:68.919067pt;}
.yfb{bottom:97.873600pt;}
.y168{bottom:101.552000pt;}
.yf6{bottom:102.520000pt;}
.ye1{bottom:102.841920pt;}
.yb9{bottom:103.152000pt;}
.y100{bottom:103.632000pt;}
.y14d{bottom:104.272000pt;}
.yc6{bottom:113.712000pt;}
.yfa{bottom:114.194720pt;}
.y60{bottom:114.352000pt;}
.ye0{bottom:115.154560pt;}
.yf5{bottom:119.162880pt;}
.y136{bottom:124.272000pt;}
.yae{bottom:124.912000pt;}
.y11b{bottom:127.472000pt;}
.yf9{bottom:130.675200pt;}
.yf4{bottom:131.640960pt;}
.yb8{bottom:132.592000pt;}
.yd0{bottom:133.072000pt;}
.y14c{bottom:133.872000pt;}
.ye{bottom:135.092000pt;}
.y7b{bottom:135.632000pt;}
.y92{bottom:141.232000pt;}
.y167{bottom:141.712000pt;}
.y107{bottom:142.192000pt;}
.ya3{bottom:143.312000pt;}
.y5f{bottom:143.792000pt;}
.yf8{bottom:151.960320pt;}
.yad{bottom:154.512000pt;}
.y11a{bottom:156.912000pt;}
.yb7{bottom:162.032000pt;}
.ycf{bottom:162.672000pt;}
.y14b{bottom:163.312000pt;}
.y135{bottom:164.432000pt;}
.yf7{bottom:164.437120pt;}
.y7a{bottom:165.072000pt;}
.y91{bottom:170.832000pt;}
.y106{bottom:171.632000pt;}
.ydf{bottom:172.272000pt;}
.ya2{bottom:172.752000pt;}
.y5e{bottom:173.232000pt;}
.yd1{bottom:173.392000pt;}
.yd{bottom:174.056000pt;}
.y166{bottom:181.872000pt;}
.yc5{bottom:183.472000pt;}
.yac{bottom:183.952000pt;}
.y119{bottom:186.512000pt;}
.yb6{bottom:191.632000pt;}
.yce{bottom:192.112000pt;}
.yf3{bottom:192.432000pt;}
.y134{bottom:193.872000pt;}
.y79{bottom:194.672000pt;}
.y36{bottom:195.360000pt;}
.y90{bottom:200.272000pt;}
.y105{bottom:201.072000pt;}
.yde{bottom:201.712000pt;}
.ya1{bottom:202.192000pt;}
.y5d{bottom:202.832000pt;}
.y14a{bottom:203.472000pt;}
.yc4{bottom:212.912000pt;}
.yc{bottom:213.020000pt;}
.ycc{bottom:213.392000pt;}
.y35{bottom:213.760000pt;}
.y118{bottom:215.952000pt;}
.y165{bottom:220.446720pt;}
.yb5{bottom:221.072000pt;}
.yff{bottom:221.552000pt;}
.yf2{bottom:221.872000pt;}
.y133{bottom:223.472000pt;}
.y78{bottom:224.112000pt;}
.y8f{bottom:229.872000pt;}
.y104{bottom:230.672000pt;}
.ydd{bottom:231.152000pt;}
.ya0{bottom:231.792000pt;}
.y34{bottom:232.160000pt;}
.y5c{bottom:232.272000pt;}
.y149{bottom:233.712000pt;}
.yc3{bottom:242.352000pt;}
.ycb{bottom:242.992000pt;}
.y117{bottom:245.392000pt;}
.yfe{bottom:251.152000pt;}
.yf1{bottom:251.472000pt;}
.y132{bottom:252.912000pt;}
.y77{bottom:253.552000pt;}
.y164{bottom:256.275200pt;}
.y9f{bottom:261.232000pt;}
.y5b{bottom:261.872000pt;}
.y148{bottom:263.792000pt;}
.y122{bottom:264.272000pt;}
.y33{bottom:266.560000pt;}
.y8e{bottom:270.032000pt;}
.ydc{bottom:271.312000pt;}
.y103{bottom:271.472000pt;}
.yc2{bottom:271.952000pt;}
.yca{bottom:272.432000pt;}
.y116{bottom:274.992000pt;}
.yfd{bottom:280.592000pt;}
.yf0{bottom:280.912000pt;}
.y76{bottom:283.152000pt;}
.y32{bottom:284.960000pt;}
.y9e{bottom:290.672000pt;}
.y5a{bottom:291.312000pt;}
.y121{bottom:293.872000pt;}
.ydb{bottom:300.912000pt;}
.yc1{bottom:301.392000pt;}
.y102{bottom:301.552000pt;}
.ycd{bottom:302.032000pt;}
.y31{bottom:303.360000pt;}
.y147{bottom:303.792000pt;}
.y115{bottom:304.432000pt;}
.y8d{bottom:310.192000pt;}
.yef{bottom:310.352000pt;}
.y75{bottom:312.592000pt;}
.y9d{bottom:320.272000pt;}
.yb0{bottom:320.752000pt;}
.yb4{bottom:320.912000pt;}
.y30{bottom:321.760000pt;}
.y120{bottom:323.312000pt;}
.y163{bottom:323.472000pt;}
.yda{bottom:330.352000pt;}
.yc0{bottom:330.832000pt;}
.y59{bottom:331.472000pt;}
.y101{bottom:331.632000pt;}
.y146{bottom:333.232000pt;}
.y131{bottom:333.872000pt;}
.y114{bottom:334.032000pt;}
.y8c{bottom:339.632000pt;}
.y2f{bottom:340.160000pt;}
.yee{bottom:340.592000pt;}
.y74{bottom:342.192000pt;}
.yb{bottom:344.252000pt;}
.yaf{bottom:350.352000pt;}
.y11f{bottom:352.752000pt;}
.y162{bottom:352.912000pt;}
.y2e{bottom:358.560000pt;}
.yd9{bottom:359.792000pt;}
.y9c{bottom:360.432000pt;}
.y58{bottom:360.912000pt;}
.y145{bottom:362.672000pt;}
.y113{bottom:363.472000pt;}
.y130{bottom:363.952000pt;}
.y8b{bottom:369.072000pt;}
.yed{bottom:370.672000pt;}
.y73{bottom:371.632000pt;}
.y2d{bottom:376.960000pt;}
.ya{bottom:377.036000pt;}
.yb3{bottom:379.792000pt;}
.y11e{bottom:382.352000pt;}
.yd8{bottom:389.392000pt;}
.y9b{bottom:389.872000pt;}
.y57{bottom:390.512000pt;}
.y112{bottom:392.912000pt;}
.y161{bottom:393.072000pt;}
.y12f{bottom:394.032000pt;}
.y2c{bottom:395.360000pt;}
.y8a{bottom:398.672000pt;}
.y72{bottom:401.072000pt;}
.y144{bottom:403.632000pt;}
.yb2{bottom:409.232000pt;}
.yec{bottom:410.672000pt;}
.y11d{bottom:411.792000pt;}
.y2b{bottom:413.760000pt;}
.y9{bottom:413.832000pt;}
.yd7{bottom:418.832000pt;}
.y9a{bottom:419.312000pt;}
.y56{bottom:419.952000pt;}
.y111{bottom:422.512000pt;}
.y160{bottom:423.312000pt;}
.ybf{bottom:430.032000pt;}
.y71{bottom:430.672000pt;}
.y2a{bottom:432.160000pt;}
.y143{bottom:432.912000pt;}
.y12e{bottom:434.032000pt;}
.y89{bottom:438.832000pt;}
.yeb{bottom:440.112000pt;}
.y11c{bottom:441.232000pt;}
.y8{bottom:444.989333pt;}
.yd6{bottom:448.272000pt;}
.y99{bottom:448.912000pt;}
.y55{bottom:449.392000pt;}
.y29{bottom:450.560000pt;}
.y110{bottom:451.952000pt;}
.y15f{bottom:453.392000pt;}
.ybe{bottom:459.472000pt;}
.y70{bottom:460.112000pt;}
.y12d{bottom:464.272000pt;}
.y88{bottom:468.272000pt;}
.y28{bottom:468.960000pt;}
.yea{bottom:469.712000pt;}
.yab{bottom:470.832000pt;}
.y142{bottom:473.072000pt;}
.yd5{bottom:477.872000pt;}
.y98{bottom:478.352000pt;}
.y54{bottom:478.992000pt;}
.y7{bottom:479.586667pt;}
.y10f{bottom:481.392000pt;}
.y27{bottom:487.360000pt;}
.ybd{bottom:489.072000pt;}
.y6f{bottom:489.552000pt;}
.y15e{bottom:493.392000pt;}
.y87{bottom:497.712000pt;}
.ye9{bottom:499.152000pt;}
.yaa{bottom:500.272000pt;}
.y6{bottom:500.714667pt;}
.y141{bottom:503.312000pt;}
.y12c{bottom:504.272000pt;}
.y26{bottom:505.760000pt;}
.y97{bottom:507.952000pt;}
.y53{bottom:508.432000pt;}
.y10e{bottom:510.992000pt;}
.yd4{bottom:518.032000pt;}
.ybc{bottom:518.512000pt;}
.y6e{bottom:519.152000pt;}
.y15d{bottom:522.832000pt;}
.y25{bottom:524.160000pt;}
.y86{bottom:527.312000pt;}
.ye8{bottom:528.592000pt;}
.ya9{bottom:529.712000pt;}
.y140{bottom:533.392000pt;}
.y12b{bottom:533.712000pt;}
.y96{bottom:537.392000pt;}
.y52{bottom:537.872000pt;}
.y10d{bottom:540.432000pt;}
.y24{bottom:542.560000pt;}
.yd3{bottom:548.272000pt;}
.y6d{bottom:548.592000pt;}
.ybb{bottom:548.752000pt;}
.y15c{bottom:553.072000pt;}
.y85{bottom:556.752000pt;}
.ye7{bottom:558.192000pt;}
.ya8{bottom:559.312000pt;}
.y23{bottom:560.960000pt;}
.y95{bottom:566.832000pt;}
.y51{bottom:567.472000pt;}
.y10c{bottom:569.872000pt;}
.y13f{bottom:573.392000pt;}
.y12a{bottom:573.872000pt;}
.yba{bottom:578.032000pt;}
.yd2{bottom:578.192000pt;}
.y15b{bottom:583.152000pt;}
.y5{bottom:583.333333pt;}
.y84{bottom:586.192000pt;}
.ye6{bottom:587.632000pt;}
.y6c{bottom:588.752000pt;}
.yb1{bottom:596.912000pt;}
.y10b{bottom:599.472000pt;}
.y13e{bottom:602.832000pt;}
.y129{bottom:604.112000pt;}
.y94{bottom:606.992000pt;}
.y50{bottom:607.632000pt;}
.ye5{bottom:617.072000pt;}
.y6b{bottom:618.192000pt;}
.y15a{bottom:623.152000pt;}
.y83{bottom:626.352000pt;}
.y10a{bottom:628.912000pt;}
.y22{bottom:629.760000pt;}
.y13d{bottom:632.432000pt;}
.y128{bottom:633.392000pt;}
.y4f{bottom:637.072000pt;}
.y93{bottom:637.232000pt;}
.ye4{bottom:646.672000pt;}
.y6a{bottom:647.792000pt;}
.y21{bottom:648.160000pt;}
.y159{bottom:652.592000pt;}
.y82{bottom:655.952000pt;}
.y109{bottom:658.352000pt;}
.y4e{bottom:666.512000pt;}
.y20{bottom:666.560000pt;}
.y4{bottom:669.816000pt;}
.y13c{bottom:673.232000pt;}
.y127{bottom:673.712000pt;}
.ye3{bottom:676.912000pt;}
.y69{bottom:677.232000pt;}
.y158{bottom:682.832000pt;}
.y81{bottom:685.392000pt;}
.y108{bottom:687.952000pt;}
.y4d{bottom:696.112000pt;}
.y1f{bottom:700.960000pt;}
.y126{bottom:703.152000pt;}
.y13b{bottom:703.312000pt;}
.y68{bottom:706.672000pt;}
.ye2{bottom:706.832000pt;}
.y157{bottom:712.912000pt;}
.y80{bottom:714.832000pt;}
.yc9{bottom:717.392000pt;}
.y1e{bottom:719.360000pt;}
.y40{bottom:720.912000pt;}
.y4c{bottom:725.552000pt;}
.y67{bottom:736.272000pt;}
.y3{bottom:737.404000pt;}
.y1d{bottom:737.760000pt;}
.y13a{bottom:743.312000pt;}
.y125{bottom:743.952000pt;}
.y7f{bottom:744.432000pt;}
.yc8{bottom:746.832000pt;}
.y3f{bottom:750.512000pt;}
.y156{bottom:752.912000pt;}
.y4b{bottom:754.992000pt;}
.y1c{bottom:756.160000pt;}
.y66{bottom:765.712000pt;}
.y124{bottom:773.392000pt;}
.y139{bottom:773.552000pt;}
.y7e{bottom:773.872000pt;}
.y1b{bottom:774.560000pt;}
.yc7{bottom:776.432000pt;}
.y3e{bottom:779.952000pt;}
.y155{bottom:782.352000pt;}
.y4a{bottom:784.592000pt;}
.y1a{bottom:792.960000pt;}
.y65{bottom:795.152000pt;}
.ya7{bottom:805.872000pt;}
.y3d{bottom:809.392000pt;}
.y19{bottom:811.360000pt;}
.y154{bottom:811.792000pt;}
.y138{bottom:813.552000pt;}
.y49{bottom:814.032000pt;}
.y123{bottom:814.192000pt;}
.y2{bottom:814.598667pt;}
.y64{bottom:824.752000pt;}
.y18{bottom:829.760000pt;}
.ya6{bottom:835.312000pt;}
.y3c{bottom:838.992000pt;}
.y153{bottom:842.032000pt;}
.y7d{bottom:843.472000pt;}
.y137{bottom:843.632000pt;}
.y17{bottom:848.160000pt;}
.y1{bottom:848.702667pt;}
.y48{bottom:854.192000pt;}
.ya5{bottom:864.912000pt;}
.y16{bottom:866.560000pt;}
.y3b{bottom:868.432000pt;}
.y7c{bottom:873.072000pt;}
.y152{bottom:882.032000pt;}
.y47{bottom:883.792000pt;}
.y15{bottom:884.960000pt;}
.ya4{bottom:894.352000pt;}
.y3a{bottom:897.872000pt;}
.yfc{bottom:902.512000pt;}
.y14{bottom:903.360000pt;}
.y151{bottom:911.632000pt;}
.y46{bottom:913.232000pt;}
.y13{bottom:921.760000pt;}
.y16a{bottom:922.200000pt;}
.y63{bottom:923.952000pt;}
.y39{bottom:927.472000pt;}
.y12{bottom:940.160000pt;}
.y150{bottom:941.712000pt;}
.y45{bottom:942.672000pt;}
.y62{bottom:953.392000pt;}
.y11{bottom:958.560000pt;}
.y169{bottom:964.752000pt;}
.y44{bottom:972.272000pt;}
.y10{bottom:976.960000pt;}
.y14f{bottom:982.512000pt;}
.y61{bottom:982.832000pt;}
.yf{bottom:995.360000pt;}
.y38{bottom:1004.928000pt;}
.y43{bottom:1012.432000pt;}
.y14e{bottom:1012.592000pt;}
.hd{height:33.406720pt;}
.he{height:33.418880pt;}
.hf{height:33.423360pt;}
.hc{height:33.459200pt;}
.hb{height:39.243750pt;}
.h10{height:52.004480pt;}
.h5{height:56.156250pt;}
.h8{height:57.643520pt;}
.ha{height:62.656000pt;}
.h7{height:62.812500pt;}
.h3{height:64.166667pt;}
.h2{height:65.515625pt;}
.h4{height:74.687812pt;}
.h9{height:93.984000pt;}
.h0{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:66.240000pt;}
.xc{left:113.444000pt;}
.xf{left:137.440000pt;}
.x3{left:150.270667pt;}
.xd{left:151.200000pt;}
.x1{left:156.396000pt;}
.x10{left:161.440000pt;}
.x8{left:163.721333pt;}
.x6{left:184.970667pt;}
.x9{left:238.256000pt;}
.x4{left:260.249333pt;}
.x5{left:296.301333pt;}
.xa{left:316.096000pt;}
.x7{left:325.966667pt;}
.xb{left:339.258667pt;}
.x2{left:357.750667pt;}
.x11{left:388.637440pt;}
.xe{left:392.803200pt;}
.x13{left:396.792000pt;}
}




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