
    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_e9d3482682891ae18151fc92.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0a7a46d397d5dc689b34111d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3b54dcd249a3abf2104fdafc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754395;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_14b1a7ace427cf28245a2895.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_15809a5dd4417928d672bffb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_1fbde3c95b651c78570a4ae5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_52b28356d651504911964d83.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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_86b062a52bf17b5b293e4031.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_bfed66f9ef301f6b13bb78ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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);}
.v6{vertical-align:-132.624000px;}
.v1{vertical-align:-131.040000px;}
.v8{vertical-align:-128.160000px;}
.v5{vertical-align:-125.568000px;}
.v4{vertical-align:-99.504000px;}
.va{vertical-align:-55.152000px;}
.v3{vertical-align:-13.824000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.160000px;}
.v9{vertical-align:76.896000px;}
.v7{vertical-align:86.112000px;}
.vb{vertical-align:99.216000px;}
.lsb{letter-spacing:-8.220000px;}
.ls6{letter-spacing:-1.044000px;}
.ls4{letter-spacing:-0.405600px;}
.ls3{letter-spacing:-0.325200px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.272400px;}
.ls5{letter-spacing:-0.197400px;}
.ls12{letter-spacing:-0.162600px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.245400px;}
.ls7{letter-spacing:0.325200px;}
.ls11{letter-spacing:39.945600px;}
.ls13{letter-spacing:39.996000px;}
.lsc{letter-spacing:44.729856px;}
.lsd{letter-spacing:44.858160px;}
.ls10{letter-spacing:52.624080px;}
.ls2{letter-spacing:74.105856px;}
.ls1{letter-spacing:74.234160px;}
.lse{letter-spacing:185.436000px;}
.lsf{letter-spacing:233.652000px;}
.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;}
}
.ws2c{word-spacing:-73.458720px;}
.ws2f{word-spacing:-66.653280px;}
.ws1{word-spacing:-60.048000px;}
.ws1c{word-spacing:-53.482752px;}
.ws6{word-spacing:-53.442720px;}
.wsf{word-spacing:-53.077152px;}
.ws2a{word-spacing:-46.677312px;}
.ws22{word-spacing:-46.637280px;}
.ws1d{word-spacing:-2.067360px;}
.ws2e{word-spacing:-2.022240px;}
.ws2b{word-spacing:-1.829184px;}
.ws2d{word-spacing:-1.787280px;}
.ws18{word-spacing:-1.739040px;}
.ws1a{word-spacing:-1.145760px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:0.162000px;}
.ws1b{word-spacing:0.203040px;}
.ws31{word-spacing:0.289440px;}
.ws20{word-spacing:0.704448px;}
.ws24{word-spacing:0.805440px;}
.ws21{word-spacing:1.272240px;}
.ws25{word-spacing:1.273824px;}
.ws28{word-spacing:1.508400px;}
.ws29{word-spacing:1.745280px;}
.ws27{word-spacing:1.988400px;}
.ws23{word-spacing:2.271840px;}
.ws26{word-spacing:4.338240px;}
.wsc{word-spacing:17.366400px;}
.wse{word-spacing:18.496704px;}
.wsd{word-spacing:19.819296px;}
.ws10{word-spacing:27.933600px;}
.ws12{word-spacing:28.184880px;}
.ws14{word-spacing:28.706760px;}
.ws11{word-spacing:28.826760px;}
.ws2{word-spacing:30.147600px;}
.ws13{word-spacing:30.398400px;}
.ws4{word-spacing:31.025280px;}
.ws5{word-spacing:31.122000px;}
.ws3{word-spacing:31.970160px;}
.ws1e{word-spacing:55.979280px;}
.ws1f{word-spacing:56.058552px;}
.ws9{word-spacing:112.507200px;}
.ws7{word-spacing:112.598400px;}
.ws8{word-spacing:112.602000px;}
.wsb{word-spacing:112.714560px;}
.wsa{word-spacing:113.381280px;}
.ws15{word-spacing:492.120240px;}
.ws17{word-spacing:492.386760px;}
.ws16{word-spacing:493.482000px;}
.ws33{word-spacing:2579.244480px;}
.ws30{word-spacing:2813.725440px;}
.ws32{word-spacing:3327.611760px;}
._1b{margin-left:-26.570880px;}
._0{margin-left:-19.289520px;}
._17{margin-left:-17.262000px;}
._1a{margin-left:-15.295680px;}
._f{margin-left:-13.969344px;}
._c{margin-left:-12.917520px;}
._4{margin-left:-11.422080px;}
._7{margin-left:-9.434160px;}
._1d{margin-left:-8.388000px;}
._3{margin-left:-6.372000px;}
._1{margin-left:-4.756320px;}
._b{margin-left:-3.159360px;}
._2{margin-left:-1.537920px;}
._5{width:1.677600px;}
._6{width:3.690240px;}
._d{width:4.910400px;}
._11{width:40.140000px;}
._13{width:49.744080px;}
._16{width:51.073728px;}
._a{width:52.809840px;}
._9{width:72.823200px;}
._8{width:85.099680px;}
._1c{width:126.036000px;}
._15{width:356.935200px;}
._18{width:376.331760px;}
._e{width:968.196720px;}
._14{width:1137.735600px;}
._12{width:1662.316320px;}
._10{width:1681.418640px;}
._19{width:2397.872448px;}
.fc4{color:rgb(255,51,51);}
.fc3{color:transparent;}
.fc1{color:rgb(10,48,74);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:108.000000px;}
.fsa{font-size:156.240000px;}
.fsb{font-size:156.384000px;}
.fs5{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fsc{font-size:180.000000px;}
.fsd{font-size:180.144000px;}
.fs3{font-size:185.040000px;}
.fs2{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs8{font-size:216.000000px;}
.fs7{font-size:216.144000px;}
.fsf{font-size:239.760000px;}
.fse{font-size:239.904000px;}
.fs0{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y45{bottom:43.992000px;}
.y7b{bottom:52.416000px;}
.y14{bottom:52.956000px;}
.y7{bottom:55.296000px;}
.y8d{bottom:56.412000px;}
.y6{bottom:62.748000px;}
.ya1{bottom:63.756000px;}
.y103{bottom:69.912000px;}
.ycc{bottom:73.188000px;}
.ye1{bottom:75.492000px;}
.y1f{bottom:83.016000px;}
.y63{bottom:85.716000px;}
.y13{bottom:89.892000px;}
.y44{bottom:94.392000px;}
.y5{bottom:94.716000px;}
.y8c{bottom:103.248000px;}
.yf9{bottom:108.504000px;}
.y7a{bottom:110.016000px;}
.y81{bottom:113.436000px;}
.y102{bottom:116.712000px;}
.yac{bottom:119.592000px;}
.ya0{bottom:121.356000px;}
.y58{bottom:121.896000px;}
.yb4{bottom:126.108000px;}
.ycb{bottom:126.648000px;}
.yd3{bottom:126.756000px;}
.y74{bottom:127.224000px;}
.ybd{bottom:127.872000px;}
.ye0{bottom:129.132000px;}
.y99{bottom:130.896000px;}
.y62{bottom:136.116000px;}
.y12{bottom:140.292000px;}
.y10c{bottom:146.592000px;}
.y8b{bottom:150.225000px;}
.y1e{bottom:151.275000px;}
.y2e{bottom:156.750000px;}
.ye9{bottom:160.305000px;}
.yf8{bottom:162.000000px;}
.y34{bottom:165.570000px;}
.y43{bottom:165.675000px;}
.y80{bottom:167.475000px;}
.y6b{bottom:167.550000px;}
.y79{bottom:167.655000px;}
.yab{bottom:173.235000px;}
.y10a{bottom:179.355000px;}
.y57{bottom:179.535000px;}
.yb3{bottom:179.745000px;}
.yd2{bottom:180.390000px;}
.y101{bottom:180.435000px;}
.yc3{bottom:180.795000px;}
.ybc{bottom:181.335000px;}
.ydf{bottom:182.625000px;}
.y73{bottom:184.830000px;}
.y61{bottom:186.555000px;}
.yef{bottom:187.170000px;}
.y98{bottom:188.535000px;}
.y11{bottom:190.725000px;}
.y4e{bottom:194.475000px;}
.y3a{bottom:195.375000px;}
.y9f{bottom:200.055000px;}
.yd9{bottom:202.530000px;}
.y27{bottom:208.650000px;}
.y10f{bottom:209.595000px;}
.ye8{bottom:213.945000px;}
.yf7{bottom:215.640000px;}
.y42{bottom:216.105000px;}
.y1d{bottom:219.675000px;}
.y8a{bottom:222.045000px;}
.y68{bottom:225.255000px;}
.y109{bottom:226.365000px;}
.yaa{bottom:226.695000px;}
.yb2{bottom:233.250000px;}
.y33{bottom:233.280000px;}
.yd1{bottom:233.850000px;}
.yca{bottom:233.970000px;}
.ybb{bottom:234.975000px;}
.y2d{bottom:235.440000px;}
.yde{bottom:236.265000px;}
.yc2{bottom:238.395000px;}
.yee{bottom:240.630000px;}
.y10{bottom:241.125000px;}
.y72{bottom:242.460000px;}
.y7f{bottom:242.535000px;}
.y100{bottom:244.005000px;}
.y4d{bottom:244.875000px;}
.y92{bottom:246.030000px;}
.y78{bottom:246.135000px;}
.y6a{bottom:246.240000px;}
.y5c{bottom:253.335000px;}
.yd8{bottom:256.035000px;}
.y60{bottom:258.015000px;}
.y56{bottom:258.195000px;}
.y41{bottom:266.505000px;}
.y10e{bottom:267.195000px;}
.ye7{bottom:267.450000px;}
.y89{bottom:269.070000px;}
.yf6{bottom:269.280000px;}
.y39{bottom:269.895000px;}
.y9e{bottom:278.535000px;}
.y26{bottom:279.930000px;}
.y67{bottom:282.855000px;}
.yc9{bottom:287.430000px;}
.yba{bottom:288.615000px;}
.yf{bottom:291.525000px;}
.yed{bottom:294.300000px;}
.y4c{bottom:295.275000px;}
.y7e{bottom:296.535000px;}
.y71{bottom:300.060000px;}
.y32{bottom:303.120000px;}
.y91{bottom:303.630000px;}
.y77{bottom:303.735000px;}
.yff{bottom:307.725000px;}
.y5b{bottom:310.935000px;}
.y2c{bottom:313.920000px;}
.y88{bottom:315.870000px;}
.y40{bottom:316.905000px;}
.y108{bottom:320.145000px;}
.ye6{bottom:321.090000px;}
.y69{bottom:322.740000px;}
.y10d{bottom:324.825000px;}
.yc1{bottom:328.395000px;}
.ya9{bottom:333.825000px;}
.y55{bottom:336.885000px;}
.yb1{bottom:340.530000px;}
.yd0{bottom:340.995000px;}
.yc8{bottom:341.100000px;}
.ye{bottom:341.925000px;}
.yb9{bottom:342.105000px;}
.ydd{bottom:343.410000px;}
.y38{bottom:344.445000px;}
.y25{bottom:351.390000px;}
.y70{bottom:357.660000px;}
.y5f{bottom:361.185000px;}
.y66{bottom:361.365000px;}
.yd7{bottom:363.135000px;}
.y4b{bottom:366.585000px;}
.y107{bottom:366.945000px;}
.yfe{bottom:371.265000px;}
.y4{bottom:371.625000px;}
.ye5{bottom:374.550000px;}
.yf5{bottom:376.410000px;}
.y1c{bottom:380.445000px;}
.y31{bottom:381.780000px;}
.y10b{bottom:382.425000px;}
.y87{bottom:384.630000px;}
.yc0{bottom:386.025000px;}
.ya8{bottom:387.465000px;}
.y3f{bottom:388.410000px;}
.y64{bottom:390.600000px;}
.y2b{bottom:392.580000px;}
.yb0{bottom:394.020000px;}
.y54{bottom:394.485000px;}
.yc7{bottom:394.560000px;}
.ycf{bottom:394.635000px;}
.yb8{bottom:395.745000px;}
.ydc{bottom:397.050000px;}
.yec{bottom:401.400000px;}
.y9d{bottom:403.485000px;}
.yd{bottom:413.250000px;}
.yd6{bottom:416.805000px;}
.y4a{bottom:416.985000px;}
.y37{bottom:418.965000px;}
.y5a{bottom:419.685000px;}
.y24{bottom:422.895000px;}
.y7d{bottom:425.625000px;}
.y90{bottom:428.400000px;}
.y86{bottom:431.460000px;}
.y1b{bottom:432.285000px;}
.y5e{bottom:432.645000px;}
.yfd{bottom:434.850000px;}
.y76{bottom:440.025000px;}
.ya7{bottom:441.105000px;}
.y52{bottom:441.750000px;}
.ybf{bottom:443.625000px;}
.yc6{bottom:448.200000px;}
.yce{bottom:448.275000px;}
.yeb{bottom:455.070000px;}
.y3e{bottom:459.870000px;}
.y30{bottom:460.470000px;}
.y106{bottom:460.770000px;}
.y9c{bottom:461.085000px;}
.yc{bottom:463.650000px;}
.yb7{bottom:465.945000px;}
.y49{bottom:467.385000px;}
.yd5{bottom:470.445000px;}
.y2a{bottom:471.270000px;}
.y53{bottom:472.965000px;}
.y94{bottom:476.565000px;}
.y85{bottom:478.260000px;}
.y7c{bottom:479.625000px;}
.ye4{bottom:481.860000px;}
.yf4{bottom:483.510000px;}
.y1a{bottom:484.125000px;}
.y8f{bottom:486.000000px;}
.y51{bottom:492.195000px;}
.y65{bottom:497.670000px;}
.y59{bottom:498.210000px;}
.yfc{bottom:498.570000px;}
.yaf{bottom:501.120000px;}
.ybe{bottom:501.225000px;}
.ycd{bottom:501.765000px;}
.yc5{bottom:501.870000px;}
.y5d{bottom:504.150000px;}
.y105{bottom:507.570000px;}
.yea{bottom:508.530000px;}
.y3d{bottom:510.270000px;}
.yb{bottom:514.050000px;}
.y6f{bottom:514.830000px;}
.y48{bottom:517.830000px;}
.y97{bottom:518.730000px;}
.yb6{bottom:519.630000px;}
.yd4{bottom:523.905000px;}
.ye3{bottom:535.320000px;}
.y19{bottom:536.010000px;}
.yf3{bottom:537.195000px;}
.ya6{bottom:538.170000px;}
.y50{bottom:542.595000px;}
.y84{bottom:550.260000px;}
.y104{bottom:554.550000px;}
.y75{bottom:555.270000px;}
.yc4{bottom:555.330000px;}
.ydb{bottom:557.820000px;}
.y3c{bottom:560.700000px;}
.yfb{bottom:562.110000px;}
.y23{bottom:574.305000px;}
.y2f{bottom:575.670000px;}
.y36{bottom:576.330000px;}
.ya{bottom:585.540000px;}
.y29{bottom:586.515000px;}
.y18{bottom:587.850000px;}
.y47{bottom:589.290000px;}
.yf2{bottom:590.655000px;}
.ya5{bottom:591.810000px;}
.y4f{bottom:592.995000px;}
.y6e{bottom:593.535000px;}
.yae{bottom:608.430000px;}
.yda{bottom:611.280000px;}
.y8e{bottom:612.750000px;}
.yfa{bottom:625.860000px;}
.yb5{bottom:626.730000px;}
.y35{bottom:633.930000px;}
.y9{bottom:635.940000px;}
.y17{bottom:639.690000px;}
.ya4{bottom:645.300000px;}
.y3{bottom:654.945000px;}
.yad{bottom:661.890000px;}
.y6d{bottom:672.195000px;}
.y22{bottom:682.095000px;}
.y83{bottom:698.250000px;}
.y3b{bottom:703.470000px;}
.y96{bottom:716.040000px;}
.yf1{bottom:718.815000px;}
.ya3{bottom:727.230000px;}
.y9b{bottom:727.740000px;}
.y2{bottom:728.610000px;}
.y16{bottom:731.160000px;}
.y21{bottom:746.895000px;}
.y28{bottom:755.670000px;}
.y8{bottom:759.090000px;}
.y93{bottom:760.170000px;}
.ye2{bottom:760.710000px;}
.yf0{bottom:785.775000px;}
.y9a{bottom:792.570000px;}
.y6c{bottom:793.905000px;}
.ya2{bottom:794.235000px;}
.y95{bottom:795.270000px;}
.y15{bottom:795.990000px;}
.y46{bottom:798.225000px;}
.y1{bottom:802.230000px;}
.y82{bottom:802.365000px;}
.y20{bottom:811.695000px;}
.h6{height:112.640625px;}
.h12{height:122.133867px;}
.h5{height:136.250156px;}
.hc{height:162.953438px;}
.hd{height:163.103625px;}
.he{height:172.340156px;}
.h11{height:173.935898px;}
.h7{height:174.968437px;}
.h8{height:175.118625px;}
.hf{height:187.734375px;}
.h10{height:187.884563px;}
.h4{height:200.500313px;}
.hb{height:200.650500px;}
.h16{height:213.146156px;}
.h15{height:222.362156px;}
.ha{height:225.281250px;}
.h9{height:225.431438px;}
.h17{height:235.466156px;}
.h14{height:250.062187px;}
.h13{height:250.212375px;}
.h2{height:275.594063px;}
.h3{height:275.744250px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.w2{width:1190.699982px;}
.w0{width:1190.700000px;}
.w1{width:1191.000000px;}
.x0{left:0.000000px;}
.x3a{left:33.947982px;}
.x1e{left:48.887982px;}
.x14{left:59.435982px;}
.x9{left:61.883982px;}
.xd{left:63.755982px;}
.x12{left:65.375982px;}
.x1{left:68.615982px;}
.x37{left:76.499982px;}
.x1f{left:83.087982px;}
.xa{left:97.883982px;}
.x4{left:100.151982px;}
.x13{left:104.831982px;}
.x15{left:112.391982px;}
.x21{left:116.171982px;}
.x8{left:118.583982px;}
.x6{left:121.355982px;}
.x38{left:132.011982px;}
.x25{left:136.151982px;}
.x20{left:141.551982px;}
.x17{left:143.351982px;}
.x1c{left:146.411982px;}
.x3c{left:148.211982px;}
.x1a{left:152.894982px;}
.x30{left:159.014982px;}
.x2f{left:161.534982px;}
.x16{left:166.034982px;}
.x23{left:168.374982px;}
.x18{left:173.774982px;}
.x1b{left:179.534982px;}
.x31{left:183.314982px;}
.x2a{left:184.394982px;}
.x2d{left:194.474982px;}
.xe{left:205.274982px;}
.x35{left:209.954982px;}
.xb{left:216.074982px;}
.x27{left:220.034982px;}
.x22{left:224.354982px;}
.x24{left:231.554982px;}
.x1d{left:234.974982px;}
.x33{left:243.254982px;}
.x11{left:251.279982px;}
.x10{left:264.779982px;}
.x36{left:317.234982px;}
.x2e{left:319.214982px;}
.x39{left:321.764982px;}
.x3b{left:330.224982px;}
.x29{left:341.564982px;}
.x26{left:358.124982px;}
.x2{left:360.104982px;}
.xc{left:382.604982px;}
.x2b{left:387.824982px;}
.x28{left:401.324982px;}
.x3{left:460.544982px;}
.xf{left:482.429982px;}
.x2c{left:486.824982px;}
.x32{left:509.144982px;}
.x34{left:520.304982px;}
.x7{left:853.814982px;}
.x19{left:1061.999982px;}
.x5{left:1087.559982px;}
@media print{
.v6{vertical-align:-117.888000pt;}
.v1{vertical-align:-116.480000pt;}
.v8{vertical-align:-113.920000pt;}
.v5{vertical-align:-111.616000pt;}
.v4{vertical-align:-88.448000pt;}
.va{vertical-align:-49.024000pt;}
.v3{vertical-align:-12.288000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.v9{vertical-align:68.352000pt;}
.v7{vertical-align:76.544000pt;}
.vb{vertical-align:88.192000pt;}
.lsb{letter-spacing:-7.306667pt;}
.ls6{letter-spacing:-0.928000pt;}
.ls4{letter-spacing:-0.360533pt;}
.ls3{letter-spacing:-0.289067pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.242133pt;}
.ls5{letter-spacing:-0.175467pt;}
.ls12{letter-spacing:-0.144533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.218133pt;}
.ls7{letter-spacing:0.289067pt;}
.ls11{letter-spacing:35.507200pt;}
.ls13{letter-spacing:35.552000pt;}
.lsc{letter-spacing:39.759872pt;}
.lsd{letter-spacing:39.873920pt;}
.ls10{letter-spacing:46.776960pt;}
.ls2{letter-spacing:65.871872pt;}
.ls1{letter-spacing:65.985920pt;}
.lse{letter-spacing:164.832000pt;}
.lsf{letter-spacing:207.690667pt;}
.ws2c{word-spacing:-65.296640pt;}
.ws2f{word-spacing:-59.247360pt;}
.ws1{word-spacing:-53.376000pt;}
.ws1c{word-spacing:-47.540224pt;}
.ws6{word-spacing:-47.504640pt;}
.wsf{word-spacing:-47.179691pt;}
.ws2a{word-spacing:-41.490944pt;}
.ws22{word-spacing:-41.455360pt;}
.ws1d{word-spacing:-1.837653pt;}
.ws2e{word-spacing:-1.797547pt;}
.ws2b{word-spacing:-1.625941pt;}
.ws2d{word-spacing:-1.588693pt;}
.ws18{word-spacing:-1.545813pt;}
.ws1a{word-spacing:-1.018453pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:0.144000pt;}
.ws1b{word-spacing:0.180480pt;}
.ws31{word-spacing:0.257280pt;}
.ws20{word-spacing:0.626176pt;}
.ws24{word-spacing:0.715947pt;}
.ws21{word-spacing:1.130880pt;}
.ws25{word-spacing:1.132288pt;}
.ws28{word-spacing:1.340800pt;}
.ws29{word-spacing:1.551360pt;}
.ws27{word-spacing:1.767467pt;}
.ws23{word-spacing:2.019413pt;}
.ws26{word-spacing:3.856213pt;}
.wsc{word-spacing:15.436800pt;}
.wse{word-spacing:16.441515pt;}
.wsd{word-spacing:17.617152pt;}
.ws10{word-spacing:24.829867pt;}
.ws12{word-spacing:25.053227pt;}
.ws14{word-spacing:25.517120pt;}
.ws11{word-spacing:25.623787pt;}
.ws2{word-spacing:26.797867pt;}
.ws13{word-spacing:27.020800pt;}
.ws4{word-spacing:27.578027pt;}
.ws5{word-spacing:27.664000pt;}
.ws3{word-spacing:28.417920pt;}
.ws1e{word-spacing:49.759360pt;}
.ws1f{word-spacing:49.829824pt;}
.ws9{word-spacing:100.006400pt;}
.ws7{word-spacing:100.087467pt;}
.ws8{word-spacing:100.090667pt;}
.wsb{word-spacing:100.190720pt;}
.wsa{word-spacing:100.783360pt;}
.ws15{word-spacing:437.440213pt;}
.ws17{word-spacing:437.677120pt;}
.ws16{word-spacing:438.650667pt;}
.ws33{word-spacing:2292.661760pt;}
.ws30{word-spacing:2501.089280pt;}
.ws32{word-spacing:2957.877120pt;}
._1b{margin-left:-23.618560pt;}
._0{margin-left:-17.146240pt;}
._17{margin-left:-15.344000pt;}
._1a{margin-left:-13.596160pt;}
._f{margin-left:-12.417195pt;}
._c{margin-left:-11.482240pt;}
._4{margin-left:-10.152960pt;}
._7{margin-left:-8.385920pt;}
._1d{margin-left:-7.456000pt;}
._3{margin-left:-5.664000pt;}
._1{margin-left:-4.227840pt;}
._b{margin-left:-2.808320pt;}
._2{margin-left:-1.367040pt;}
._5{width:1.491200pt;}
._6{width:3.280213pt;}
._d{width:4.364800pt;}
._11{width:35.680000pt;}
._13{width:44.216960pt;}
._16{width:45.398869pt;}
._a{width:46.942080pt;}
._9{width:64.731733pt;}
._8{width:75.644160pt;}
._1c{width:112.032000pt;}
._15{width:317.275733pt;}
._18{width:334.517120pt;}
._e{width:860.619307pt;}
._14{width:1011.320533pt;}
._12{width:1477.614507pt;}
._10{width:1494.594347pt;}
._19{width:2131.442176pt;}
.fs4{font-size:96.000000pt;}
.fsa{font-size:138.880000pt;}
.fsb{font-size:139.008000pt;}
.fs5{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fsc{font-size:160.000000pt;}
.fsd{font-size:160.128000pt;}
.fs3{font-size:164.480000pt;}
.fs2{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs8{font-size:192.000000pt;}
.fs7{font-size:192.128000pt;}
.fsf{font-size:213.120000pt;}
.fse{font-size:213.248000pt;}
.fs0{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:39.104000pt;}
.y7b{bottom:46.592000pt;}
.y14{bottom:47.072000pt;}
.y7{bottom:49.152000pt;}
.y8d{bottom:50.144000pt;}
.y6{bottom:55.776000pt;}
.ya1{bottom:56.672000pt;}
.y103{bottom:62.144000pt;}
.ycc{bottom:65.056000pt;}
.ye1{bottom:67.104000pt;}
.y1f{bottom:73.792000pt;}
.y63{bottom:76.192000pt;}
.y13{bottom:79.904000pt;}
.y44{bottom:83.904000pt;}
.y5{bottom:84.192000pt;}
.y8c{bottom:91.776000pt;}
.yf9{bottom:96.448000pt;}
.y7a{bottom:97.792000pt;}
.y81{bottom:100.832000pt;}
.y102{bottom:103.744000pt;}
.yac{bottom:106.304000pt;}
.ya0{bottom:107.872000pt;}
.y58{bottom:108.352000pt;}
.yb4{bottom:112.096000pt;}
.ycb{bottom:112.576000pt;}
.yd3{bottom:112.672000pt;}
.y74{bottom:113.088000pt;}
.ybd{bottom:113.664000pt;}
.ye0{bottom:114.784000pt;}
.y99{bottom:116.352000pt;}
.y62{bottom:120.992000pt;}
.y12{bottom:124.704000pt;}
.y10c{bottom:130.304000pt;}
.y8b{bottom:133.533333pt;}
.y1e{bottom:134.466667pt;}
.y2e{bottom:139.333333pt;}
.ye9{bottom:142.493333pt;}
.yf8{bottom:144.000000pt;}
.y34{bottom:147.173333pt;}
.y43{bottom:147.266667pt;}
.y80{bottom:148.866667pt;}
.y6b{bottom:148.933333pt;}
.y79{bottom:149.026667pt;}
.yab{bottom:153.986667pt;}
.y10a{bottom:159.426667pt;}
.y57{bottom:159.586667pt;}
.yb3{bottom:159.773333pt;}
.yd2{bottom:160.346667pt;}
.y101{bottom:160.386667pt;}
.yc3{bottom:160.706667pt;}
.ybc{bottom:161.186667pt;}
.ydf{bottom:162.333333pt;}
.y73{bottom:164.293333pt;}
.y61{bottom:165.826667pt;}
.yef{bottom:166.373333pt;}
.y98{bottom:167.586667pt;}
.y11{bottom:169.533333pt;}
.y4e{bottom:172.866667pt;}
.y3a{bottom:173.666667pt;}
.y9f{bottom:177.826667pt;}
.yd9{bottom:180.026667pt;}
.y27{bottom:185.466667pt;}
.y10f{bottom:186.306667pt;}
.ye8{bottom:190.173333pt;}
.yf7{bottom:191.680000pt;}
.y42{bottom:192.093333pt;}
.y1d{bottom:195.266667pt;}
.y8a{bottom:197.373333pt;}
.y68{bottom:200.226667pt;}
.y109{bottom:201.213333pt;}
.yaa{bottom:201.506667pt;}
.yb2{bottom:207.333333pt;}
.y33{bottom:207.360000pt;}
.yd1{bottom:207.866667pt;}
.yca{bottom:207.973333pt;}
.ybb{bottom:208.866667pt;}
.y2d{bottom:209.280000pt;}
.yde{bottom:210.013333pt;}
.yc2{bottom:211.906667pt;}
.yee{bottom:213.893333pt;}
.y10{bottom:214.333333pt;}
.y72{bottom:215.520000pt;}
.y7f{bottom:215.586667pt;}
.y100{bottom:216.893333pt;}
.y4d{bottom:217.666667pt;}
.y92{bottom:218.693333pt;}
.y78{bottom:218.786667pt;}
.y6a{bottom:218.880000pt;}
.y5c{bottom:225.186667pt;}
.yd8{bottom:227.586667pt;}
.y60{bottom:229.346667pt;}
.y56{bottom:229.506667pt;}
.y41{bottom:236.893333pt;}
.y10e{bottom:237.506667pt;}
.ye7{bottom:237.733333pt;}
.y89{bottom:239.173333pt;}
.yf6{bottom:239.360000pt;}
.y39{bottom:239.906667pt;}
.y9e{bottom:247.586667pt;}
.y26{bottom:248.826667pt;}
.y67{bottom:251.426667pt;}
.yc9{bottom:255.493333pt;}
.yba{bottom:256.546667pt;}
.yf{bottom:259.133333pt;}
.yed{bottom:261.600000pt;}
.y4c{bottom:262.466667pt;}
.y7e{bottom:263.586667pt;}
.y71{bottom:266.720000pt;}
.y32{bottom:269.440000pt;}
.y91{bottom:269.893333pt;}
.y77{bottom:269.986667pt;}
.yff{bottom:273.533333pt;}
.y5b{bottom:276.386667pt;}
.y2c{bottom:279.040000pt;}
.y88{bottom:280.773333pt;}
.y40{bottom:281.693333pt;}
.y108{bottom:284.573333pt;}
.ye6{bottom:285.413333pt;}
.y69{bottom:286.880000pt;}
.y10d{bottom:288.733333pt;}
.yc1{bottom:291.906667pt;}
.ya9{bottom:296.733333pt;}
.y55{bottom:299.453333pt;}
.yb1{bottom:302.693333pt;}
.yd0{bottom:303.106667pt;}
.yc8{bottom:303.200000pt;}
.ye{bottom:303.933333pt;}
.yb9{bottom:304.093333pt;}
.ydd{bottom:305.253333pt;}
.y38{bottom:306.173333pt;}
.y25{bottom:312.346667pt;}
.y70{bottom:317.920000pt;}
.y5f{bottom:321.053333pt;}
.y66{bottom:321.213333pt;}
.yd7{bottom:322.786667pt;}
.y4b{bottom:325.853333pt;}
.y107{bottom:326.173333pt;}
.yfe{bottom:330.013333pt;}
.y4{bottom:330.333333pt;}
.ye5{bottom:332.933333pt;}
.yf5{bottom:334.586667pt;}
.y1c{bottom:338.173333pt;}
.y31{bottom:339.360000pt;}
.y10b{bottom:339.933333pt;}
.y87{bottom:341.893333pt;}
.yc0{bottom:343.133333pt;}
.ya8{bottom:344.413333pt;}
.y3f{bottom:345.253333pt;}
.y64{bottom:347.200000pt;}
.y2b{bottom:348.960000pt;}
.yb0{bottom:350.240000pt;}
.y54{bottom:350.653333pt;}
.yc7{bottom:350.720000pt;}
.ycf{bottom:350.786667pt;}
.yb8{bottom:351.773333pt;}
.ydc{bottom:352.933333pt;}
.yec{bottom:356.800000pt;}
.y9d{bottom:358.653333pt;}
.yd{bottom:367.333333pt;}
.yd6{bottom:370.493333pt;}
.y4a{bottom:370.653333pt;}
.y37{bottom:372.413333pt;}
.y5a{bottom:373.053333pt;}
.y24{bottom:375.906667pt;}
.y7d{bottom:378.333333pt;}
.y90{bottom:380.800000pt;}
.y86{bottom:383.520000pt;}
.y1b{bottom:384.253333pt;}
.y5e{bottom:384.573333pt;}
.yfd{bottom:386.533333pt;}
.y76{bottom:391.133333pt;}
.ya7{bottom:392.093333pt;}
.y52{bottom:392.666667pt;}
.ybf{bottom:394.333333pt;}
.yc6{bottom:398.400000pt;}
.yce{bottom:398.466667pt;}
.yeb{bottom:404.506667pt;}
.y3e{bottom:408.773333pt;}
.y30{bottom:409.306667pt;}
.y106{bottom:409.573333pt;}
.y9c{bottom:409.853333pt;}
.yc{bottom:412.133333pt;}
.yb7{bottom:414.173333pt;}
.y49{bottom:415.453333pt;}
.yd5{bottom:418.173333pt;}
.y2a{bottom:418.906667pt;}
.y53{bottom:420.413333pt;}
.y94{bottom:423.613333pt;}
.y85{bottom:425.120000pt;}
.y7c{bottom:426.333333pt;}
.ye4{bottom:428.320000pt;}
.yf4{bottom:429.786667pt;}
.y1a{bottom:430.333333pt;}
.y8f{bottom:432.000000pt;}
.y51{bottom:437.506667pt;}
.y65{bottom:442.373333pt;}
.y59{bottom:442.853333pt;}
.yfc{bottom:443.173333pt;}
.yaf{bottom:445.440000pt;}
.ybe{bottom:445.533333pt;}
.ycd{bottom:446.013333pt;}
.yc5{bottom:446.106667pt;}
.y5d{bottom:448.133333pt;}
.y105{bottom:451.173333pt;}
.yea{bottom:452.026667pt;}
.y3d{bottom:453.573333pt;}
.yb{bottom:456.933333pt;}
.y6f{bottom:457.626667pt;}
.y48{bottom:460.293333pt;}
.y97{bottom:461.093333pt;}
.yb6{bottom:461.893333pt;}
.yd4{bottom:465.693333pt;}
.ye3{bottom:475.840000pt;}
.y19{bottom:476.453333pt;}
.yf3{bottom:477.506667pt;}
.ya6{bottom:478.373333pt;}
.y50{bottom:482.306667pt;}
.y84{bottom:489.120000pt;}
.y104{bottom:492.933333pt;}
.y75{bottom:493.573333pt;}
.yc4{bottom:493.626667pt;}
.ydb{bottom:495.840000pt;}
.y3c{bottom:498.400000pt;}
.yfb{bottom:499.653333pt;}
.y23{bottom:510.493333pt;}
.y2f{bottom:511.706667pt;}
.y36{bottom:512.293333pt;}
.ya{bottom:520.480000pt;}
.y29{bottom:521.346667pt;}
.y18{bottom:522.533333pt;}
.y47{bottom:523.813333pt;}
.yf2{bottom:525.026667pt;}
.ya5{bottom:526.053333pt;}
.y4f{bottom:527.106667pt;}
.y6e{bottom:527.586667pt;}
.yae{bottom:540.826667pt;}
.yda{bottom:543.360000pt;}
.y8e{bottom:544.666667pt;}
.yfa{bottom:556.320000pt;}
.yb5{bottom:557.093333pt;}
.y35{bottom:563.493333pt;}
.y9{bottom:565.280000pt;}
.y17{bottom:568.613333pt;}
.ya4{bottom:573.600000pt;}
.y3{bottom:582.173333pt;}
.yad{bottom:588.346667pt;}
.y6d{bottom:597.506667pt;}
.y22{bottom:606.306667pt;}
.y83{bottom:620.666667pt;}
.y3b{bottom:625.306667pt;}
.y96{bottom:636.480000pt;}
.yf1{bottom:638.946667pt;}
.ya3{bottom:646.426667pt;}
.y9b{bottom:646.880000pt;}
.y2{bottom:647.653333pt;}
.y16{bottom:649.920000pt;}
.y21{bottom:663.906667pt;}
.y28{bottom:671.706667pt;}
.y8{bottom:674.746667pt;}
.y93{bottom:675.706667pt;}
.ye2{bottom:676.186667pt;}
.yf0{bottom:698.466667pt;}
.y9a{bottom:704.506667pt;}
.y6c{bottom:705.693333pt;}
.ya2{bottom:705.986667pt;}
.y95{bottom:706.906667pt;}
.y15{bottom:707.546667pt;}
.y46{bottom:709.533333pt;}
.y1{bottom:713.093333pt;}
.y82{bottom:713.213333pt;}
.y20{bottom:721.506667pt;}
.h6{height:100.125000pt;}
.h12{height:108.563437pt;}
.h5{height:121.111250pt;}
.hc{height:144.847500pt;}
.hd{height:144.981000pt;}
.he{height:153.191250pt;}
.h11{height:154.609688pt;}
.h7{height:155.527500pt;}
.h8{height:155.661000pt;}
.hf{height:166.875000pt;}
.h10{height:167.008500pt;}
.h4{height:178.222500pt;}
.hb{height:178.356000pt;}
.h16{height:189.463250pt;}
.h15{height:197.655250pt;}
.ha{height:200.250000pt;}
.h9{height:200.383500pt;}
.h17{height:209.303250pt;}
.h14{height:222.277500pt;}
.h13{height:222.411000pt;}
.h2{height:244.972500pt;}
.h3{height:245.106000pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.w2{width:1058.399984pt;}
.w0{width:1058.400000pt;}
.w1{width:1058.666667pt;}
.x0{left:0.000000pt;}
.x3a{left:30.175984pt;}
.x1e{left:43.455984pt;}
.x14{left:52.831984pt;}
.x9{left:55.007984pt;}
.xd{left:56.671984pt;}
.x12{left:58.111984pt;}
.x1{left:60.991984pt;}
.x37{left:67.999984pt;}
.x1f{left:73.855984pt;}
.xa{left:87.007984pt;}
.x4{left:89.023984pt;}
.x13{left:93.183984pt;}
.x15{left:99.903984pt;}
.x21{left:103.263984pt;}
.x8{left:105.407984pt;}
.x6{left:107.871984pt;}
.x38{left:117.343984pt;}
.x25{left:121.023984pt;}
.x20{left:125.823984pt;}
.x17{left:127.423984pt;}
.x1c{left:130.143984pt;}
.x3c{left:131.743984pt;}
.x1a{left:135.906651pt;}
.x30{left:141.346651pt;}
.x2f{left:143.586651pt;}
.x16{left:147.586651pt;}
.x23{left:149.666651pt;}
.x18{left:154.466651pt;}
.x1b{left:159.586651pt;}
.x31{left:162.946651pt;}
.x2a{left:163.906651pt;}
.x2d{left:172.866651pt;}
.xe{left:182.466651pt;}
.x35{left:186.626651pt;}
.xb{left:192.066651pt;}
.x27{left:195.586651pt;}
.x22{left:199.426651pt;}
.x24{left:205.826651pt;}
.x1d{left:208.866651pt;}
.x33{left:216.226651pt;}
.x11{left:223.359984pt;}
.x10{left:235.359984pt;}
.x36{left:281.986651pt;}
.x2e{left:283.746651pt;}
.x39{left:286.013318pt;}
.x3b{left:293.533318pt;}
.x29{left:303.613318pt;}
.x26{left:318.333318pt;}
.x2{left:320.093318pt;}
.xc{left:340.093318pt;}
.x2b{left:344.733318pt;}
.x28{left:356.733318pt;}
.x3{left:409.373318pt;}
.xf{left:428.826651pt;}
.x2c{left:432.733318pt;}
.x32{left:452.573318pt;}
.x34{left:462.493318pt;}
.x7{left:758.946651pt;}
.x19{left:943.999984pt;}
.x5{left:966.719984pt;}
}




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