
    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_767c21feaa41ce92f2065e71.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_49a3ae74d2f404bc88bcfb74.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c62d99633da1931c55a55343.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_1c6217b5b88bf31c94cd2deb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_868112290bde75c7a7ff9b03.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_7554b88596a652fa535e16de.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_8ead86e92d3024a360b3544a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f3fdce8f30e35cbe22cb2bef.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_88f93c7e17b63f5d7e5662ed.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls10{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-1.422000px;}
.ls1b{letter-spacing:-1.128000px;}
.ls11{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.942000px;}
.ls8{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.498000px;}
.lsf{letter-spacing:-0.486600px;}
.lsa{letter-spacing:-0.466800px;}
.ls12{letter-spacing:-0.313800px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.ls15{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.466800px;}
.ls14{letter-spacing:0.498000px;}
.ls0{letter-spacing:0.498240px;}
.ls3{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.732000px;}
.ls1c{letter-spacing:2.160000px;}
.ls17{letter-spacing:3.600000px;}
.lsc{letter-spacing:5.040000px;}
.lse{letter-spacing:6.480000px;}
.ls1a{letter-spacing:9.360000px;}
.ls19{letter-spacing:13.680000px;}
.ls18{letter-spacing:18.000000px;}
.ls16{letter-spacing:34.877280px;}
.ls5{letter-spacing:40.786560px;}
.lsb{letter-spacing:40.798560px;}
.ls6{letter-spacing:40.906560px;}
.ls20{letter-spacing:42.077280px;}
.ls1f{letter-spacing:75.197280px;}
.ls2{letter-spacing:196.716000px;}
.ls4{letter-spacing:1085.496000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.586800px;}
.ws2{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.633400px;}
.ws7{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.366200px;}
.ws0{word-spacing:-13.182000px;}
.ws8{word-spacing:-12.240000px;}
.ws1{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-6.909120px;}
._1f{margin-left:-4.512960px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._7{width:3.377760px;}
._b{width:4.440000px;}
._a{width:5.599680px;}
._c{width:6.696960px;}
._d{width:8.590560px;}
._8{width:9.616320px;}
._9{width:10.825920px;}
._11{width:12.225600px;}
._14{width:13.556160px;}
._1e{width:15.160800px;}
._18{width:16.165440px;}
._17{width:17.366400px;}
._16{width:18.878400px;}
._10{width:20.208960px;}
._f{width:21.349440px;}
._e{width:22.680000px;}
._15{width:23.924160px;}
._13{width:25.470720px;}
._12{width:27.034560px;}
._19{width:28.425600px;}
._1a{width:29.963520px;}
._21{width:31.378560px;}
._20{width:32.832480px;}
._1b{width:34.118880px;}
._22{width:36.058080px;}
._26{width:37.554720px;}
._29{width:50.509440px;}
._28{width:52.980480px;}
._23{width:55.226880px;}
._27{width:98.582400px;}
._24{width:206.660160px;}
._25{width:378.423360px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._1c{width:849.336000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y48{bottom:3.240000px;}
.ybc{bottom:3.600000px;}
.y122{bottom:4.680000px;}
.ybe{bottom:4.725000px;}
.yc9{bottom:5.040000px;}
.y124{bottom:6.120000px;}
.ycb{bottom:7.560000px;}
.y31{bottom:11.880000px;}
.ycf{bottom:17.280000px;}
.y128{bottom:20.160000px;}
.y47{bottom:20.520000px;}
.y120{bottom:21.960000px;}
.yb0{bottom:22.680000px;}
.y11e{bottom:23.040000px;}
.y11d{bottom:23.400000px;}
.y12b{bottom:26.640000px;}
.y12e{bottom:27.720000px;}
.y46{bottom:37.800000px;}
.y30{bottom:38.154000px;}
.ye{bottom:43.560000px;}
.y12a{bottom:43.920000px;}
.y12d{bottom:45.000000px;}
.y45{bottom:63.720000px;}
.y2f{bottom:64.434000px;}
.yb1{bottom:64.845000px;}
.yc{bottom:68.400000px;}
.y2e{bottom:90.759000px;}
.ya{bottom:94.716000px;}
.y44{bottom:98.640000px;}
.y2d{bottom:117.039000px;}
.y43{bottom:124.605000px;}
.y64{bottom:130.356000px;}
.y1d{bottom:132.516000px;}
.y149{bottom:144.756000px;}
.y63{bottom:145.836000px;}
.y42{bottom:150.525000px;}
.yd1{bottom:151.950000px;}
.y2c{bottom:151.959000px;}
.yae{bottom:161.310000px;}
.y62{bottom:161.670000px;}
.y8a{bottom:164.910000px;}
.yd8{bottom:167.070000px;}
.y61{bottom:167.790000px;}
.y148{bottom:170.670000px;}
.yd0{bottom:175.710000px;}
.y41{bottom:176.445000px;}
.yad{bottom:176.790000px;}
.yc7{bottom:177.150000px;}
.y2b{bottom:177.879000px;}
.y60{bottom:178.590000px;}
.yd7{bottom:178.950000px;}
.yc6{bottom:182.550000px;}
.y89{bottom:190.830000px;}
.yac{bottom:192.270000px;}
.y5f{bottom:194.430000px;}
.y147{bottom:196.590000px;}
.y5e{bottom:199.875000px;}
.y40{bottom:202.365000px;}
.y2a{bottom:203.829000px;}
.y16a{bottom:204.195000px;}
.yab{bottom:207.795000px;}
.y5d{bottom:211.755000px;}
.y121{bottom:212.115000px;}
.y88{bottom:216.795000px;}
.y146{bottom:222.555000px;}
.yaa{bottom:223.275000px;}
.yc5{bottom:223.995000px;}
.y110{bottom:226.875000px;}
.ya9{bottom:227.955000px;}
.y3f{bottom:228.285000px;}
.y29{bottom:229.749000px;}
.y5c{bottom:230.475000px;}
.y169{bottom:231.555000px;}
.y111{bottom:232.275000px;}
.y187{bottom:235.875000px;}
.ya8{bottom:238.755000px;}
.y87{bottom:242.355000px;}
.y145{bottom:248.475000px;}
.y11f{bottom:248.835000px;}
.yc3{bottom:249.915000px;}
.y10f{bottom:252.795000px;}
.y3e{bottom:253.875000px;}
.ya7{bottom:254.595000px;}
.y28{bottom:255.309000px;}
.yc4{bottom:255.315000px;}
.y5b{bottom:256.395000px;}
.y168{bottom:257.475000px;}
.y186{bottom:261.795000px;}
.y86{bottom:268.275000px;}
.ya6{bottom:270.075000px;}
.yee{bottom:270.435000px;}
.y144{bottom:274.395000px;}
.yc2{bottom:275.835000px;}
.y10e{bottom:278.715000px;}
.y3d{bottom:279.795000px;}
.y27{bottom:281.229000px;}
.y5a{bottom:281.955000px;}
.y167{bottom:284.835000px;}
.ya5{bottom:285.555000px;}
.y185{bottom:287.715000px;}
.y85{bottom:294.195000px;}
.yec{bottom:296.355000px;}
.y143{bottom:300.315000px;}
.ya4{bottom:301.035000px;}
.yc1{bottom:301.395000px;}
.yed{bottom:301.755000px;}
.y10d{bottom:304.635000px;}
.y3c{bottom:305.715000px;}
.y26{bottom:307.149000px;}
.y59{bottom:307.875000px;}
.y166{bottom:311.835000px;}
.y184{bottom:315.075000px;}
.ya3{bottom:316.515000px;}
.y84{bottom:320.115000px;}
.yeb{bottom:322.275000px;}
.y11c{bottom:323.385000px;}
.yc0{bottom:324.105000px;}
.y142{bottom:325.905000px;}
.y10c{bottom:330.585000px;}
.y3b{bottom:331.635000px;}
.ya2{bottom:332.025000px;}
.y25{bottom:333.114000px;}
.y58{bottom:333.825000px;}
.ya1{bottom:336.705000px;}
.y165{bottom:339.225000px;}
.y183{bottom:341.025000px;}
.yc8{bottom:347.505000px;}
.ya0{bottom:347.865000px;}
.yea{bottom:348.225000px;}
.y141{bottom:351.825000px;}
.y83{bottom:355.065000px;}
.y10b{bottom:356.505000px;}
.y3a{bottom:357.555000px;}
.y24{bottom:359.034000px;}
.y57{bottom:359.745000px;}
.y164{bottom:365.145000px;}
.y182{bottom:368.025000px;}
.y11b{bottom:373.785000px;}
.ye9{bottom:374.145000px;}
.y140{bottom:377.745000px;}
.y82{bottom:380.985000px;}
.y10a{bottom:382.425000px;}
.y39{bottom:383.520000px;}
.y23{bottom:384.954000px;}
.y56{bottom:385.665000px;}
.y163{bottom:392.505000px;}
.y181{bottom:393.945000px;}
.ye8{bottom:400.065000px;}
.y13f{bottom:403.665000px;}
.y81{bottom:406.905000px;}
.y109{bottom:407.985000px;}
.y11a{bottom:408.345000px;}
.y38{bottom:409.440000px;}
.y22{bottom:410.874000px;}
.y54{bottom:411.585000px;}
.y55{bottom:416.985000px;}
.y162{bottom:418.425000px;}
.y180{bottom:421.305000px;}
.ye7{bottom:425.985000px;}
.y13e{bottom:429.585000px;}
.y80{bottom:432.465000px;}
.y108{bottom:433.905000px;}
.y119{bottom:434.265000px;}
.y37{bottom:435.720000px;}
.y21{bottom:436.794000px;}
.y52{bottom:437.505000px;}
.y53{bottom:442.905000px;}
.y161{bottom:445.785000px;}
.y17f{bottom:448.665000px;}
.ye6{bottom:451.950000px;}
.y13d{bottom:455.550000px;}
.y7f{bottom:458.430000px;}
.y107{bottom:459.870000px;}
.y118{bottom:460.230000px;}
.y20{bottom:462.384000px;}
.y51{bottom:463.110000px;}
.y160{bottom:472.830000px;}
.y17e{bottom:474.630000px;}
.yd2{bottom:476.430000px;}
.ye5{bottom:477.510000px;}
.y13c{bottom:481.470000px;}
.y7e{bottom:484.350000px;}
.y106{bottom:485.790000px;}
.y117{bottom:486.150000px;}
.y1f{bottom:488.304000px;}
.y50{bottom:489.030000px;}
.y15f{bottom:498.750000px;}
.y17d{bottom:501.630000px;}
.ye4{bottom:503.430000px;}
.y13b{bottom:507.030000px;}
.y7d{bottom:510.270000px;}
.y105{bottom:511.710000px;}
.y9f{bottom:512.070000px;}
.y1e{bottom:514.584000px;}
.y4f{bottom:514.950000px;}
.yce{bottom:517.830000px;}
.y15e{bottom:526.110000px;}
.y17c{bottom:528.990000px;}
.ye3{bottom:529.350000px;}
.y13a{bottom:532.950000px;}
.y7c{bottom:536.190000px;}
.y104{bottom:537.630000px;}
.y9e{bottom:537.990000px;}
.y4e{bottom:540.870000px;}
.yd6{bottom:550.590000px;}
.yba{bottom:551.310000px;}
.y15d{bottom:552.030000px;}
.y17b{bottom:554.910000px;}
.ye2{bottom:555.270000px;}
.y139{bottom:558.870000px;}
.y7b{bottom:562.110000px;}
.y103{bottom:563.550000px;}
.y9d{bottom:563.910000px;}
.y4d{bottom:566.790000px;}
.y15c{bottom:579.420000px;}
.ye1{bottom:581.220000px;}
.yb9{bottom:581.940000px;}
.y17a{bottom:582.300000px;}
.y138{bottom:584.820000px;}
.y7a{bottom:588.060000px;}
.y102{bottom:589.140000px;}
.y9c{bottom:589.860000px;}
.y4c{bottom:592.740000px;}
.y15b{bottom:606.420000px;}
.ye0{bottom:607.140000px;}
.yb8{bottom:607.860000px;}
.y179{bottom:608.220000px;}
.y137{bottom:610.740000px;}
.y79{bottom:613.980000px;}
.y9b{bottom:615.420000px;}
.y4b{bottom:618.660000px;}
.ydf{bottom:633.060000px;}
.yb7{bottom:633.780000px;}
.y178{bottom:635.220000px;}
.y136{bottom:636.660000px;}
.y78{bottom:639.540000px;}
.y9a{bottom:641.340000px;}
.y4a{bottom:644.580000px;}
.y101{bottom:650.340000px;}
.yde{bottom:658.620000px;}
.yb6{bottom:659.340000px;}
.y15a{bottom:659.700000px;}
.y177{bottom:661.140000px;}
.y135{bottom:662.580000px;}
.y77{bottom:665.460000px;}
.y99{bottom:667.260000px;}
.y1c{bottom:675.540000px;}
.y100{bottom:676.260000px;}
.y49{bottom:679.140000px;}
.ydd{bottom:684.540000px;}
.yb5{bottom:685.260000px;}
.y159{bottom:687.060000px;}
.y134{bottom:688.500000px;}
.y76{bottom:691.380000px;}
.y1b{bottom:692.820000px;}
.y116{bottom:693.180000px;}
.y98{bottom:693.540000px;}
.yff{bottom:702.210000px;}
.y36{bottom:704.730000px;}
.ybf{bottom:708.690000px;}
.y1a{bottom:709.770000px;}
.ydc{bottom:710.490000px;}
.yb4{bottom:711.210000px;}
.y158{bottom:713.010000px;}
.y133{bottom:714.450000px;}
.y75{bottom:717.330000px;}
.y115{bottom:719.130000px;}
.yfe{bottom:728.130000px;}
.y96{bottom:728.490000px;}
.y97{bottom:733.890000px;}
.ydb{bottom:736.410000px;}
.yb3{bottom:737.130000px;}
.y19{bottom:738.570000px;}
.y157{bottom:740.010000px;}
.y132{bottom:740.730000px;}
.y176{bottom:741.810000px;}
.y74{bottom:743.250000px;}
.yca{bottom:743.610000px;}
.y114{bottom:745.050000px;}
.yda{bottom:753.690000px;}
.yfd{bottom:754.050000px;}
.y95{bottom:754.410000px;}
.yb2{bottom:756.930000px;}
.y18{bottom:758.730000px;}
.y131{bottom:764.490000px;}
.y156{bottom:765.930000px;}
.y175{bottom:767.730000px;}
.yd9{bottom:768.450000px;}
.y73{bottom:769.170000px;}
.y113{bottom:770.970000px;}
.yaf{bottom:771.690000px;}
.y17{bottom:778.530000px;}
.yfc{bottom:779.970000px;}
.y94{bottom:780.330000px;}
.y155{bottom:793.290000px;}
.y174{bottom:794.730000px;}
.y72{bottom:795.090000px;}
.y112{bottom:796.890000px;}
.y130{bottom:799.770000px;}
.y16{bottom:804.810000px;}
.yfb{bottom:805.530000px;}
.y93{bottom:805.890000px;}
.y154{bottom:819.210000px;}
.y15{bottom:820.650000px;}
.y71{bottom:821.010000px;}
.yfa{bottom:831.495000px;}
.y92{bottom:831.855000px;}
.y12f{bottom:835.095000px;}
.y14{bottom:837.615000px;}
.y70{bottom:846.615000px;}
.y173{bottom:848.055000px;}
.y13{bottom:854.895000px;}
.yf9{bottom:857.415000px;}
.y91{bottom:857.775000px;}
.y12{bottom:872.175000px;}
.y6f{bottom:872.535000px;}
.y153{bottom:873.615000px;}
.y172{bottom:873.975000px;}
.ycd{bottom:874.335000px;}
.yf8{bottom:883.335000px;}
.y90{bottom:883.695000px;}
.y11{bottom:889.455000px;}
.y12c{bottom:893.775000px;}
.y6e{bottom:898.455000px;}
.ycc{bottom:900.615000px;}
.y152{bottom:900.975000px;}
.y171{bottom:901.335000px;}
.y10{bottom:906.735000px;}
.yf7{bottom:909.255000px;}
.y8f{bottom:909.615000px;}
.yd5{bottom:915.015000px;}
.yf{bottom:924.015000px;}
.y6d{bottom:924.375000px;}
.y151{bottom:926.895000px;}
.yd4{bottom:934.095000px;}
.yf6{bottom:935.175000px;}
.y8e{bottom:935.535000px;}
.y9{bottom:941.295000px;}
.y6c{bottom:950.295000px;}
.y129{bottom:953.565000px;}
.y150{bottom:954.285000px;}
.y8{bottom:958.605000px;}
.yf5{bottom:961.125000px;}
.y8d{bottom:961.485000px;}
.y7{bottom:972.645000px;}
.y6b{bottom:976.965000px;}
.y14f{bottom:980.205000px;}
.yf4{bottom:987.045000px;}
.y8c{bottom:987.405000px;}
.yd3{bottom:992.805000px;}
.y14e{bottom:1005.765000px;}
.y170{bottom:1007.565000px;}
.y127{bottom:1012.245000px;}
.yf3{bottom:1012.605000px;}
.y6a{bottom:1012.965000px;}
.y6{bottom:1027.365000px;}
.y14d{bottom:1033.125000px;}
.y16f{bottom:1034.925000px;}
.yf2{bottom:1038.525000px;}
.y69{bottom:1038.885000px;}
.y126{bottom:1047.165000px;}
.y5{bottom:1052.205000px;}
.y14c{bottom:1059.045000px;}
.y16e{bottom:1060.485000px;}
.yf1{bottom:1064.445000px;}
.y68{bottom:1064.805000px;}
.y4{bottom:1072.725000px;}
.ybd{bottom:1077.405000px;}
.ybb{bottom:1079.610000px;}
.y14b{bottom:1086.450000px;}
.y16d{bottom:1087.890000px;}
.yf0{bottom:1090.410000px;}
.y67{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.y125{bottom:1094.730000px;}
.y14a{bottom:1112.370000px;}
.y2{bottom:1114.530000px;}
.y16c{bottom:1115.250000px;}
.yef{bottom:1116.330000px;}
.y66{bottom:1116.690000px;}
.y123{bottom:1118.490000px;}
.y1{bottom:1131.450000px;}
.y16b{bottom:1141.170000px;}
.y65{bottom:1142.610000px;}
.y8b{bottom:1148.010000px;}
.y35{bottom:1166.370000px;}
.y34{bottom:1180.410000px;}
.y33{bottom:1201.290000px;}
.y32{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h1c{height:16.920000px;}
.h16{height:18.360000px;}
.h17{height:19.836000px;}
.h18{height:20.880000px;}
.h19{height:25.560000px;}
.hf{height:28.818281px;}
.h13{height:31.587891px;}
.he{height:34.114922px;}
.h24{height:34.200000px;}
.h28{height:34.560000px;}
.h23{height:34.596000px;}
.h22{height:36.000000px;}
.h21{height:37.080000px;}
.h20{height:37.440000px;}
.hb{height:41.696016px;}
.h12{height:43.676719px;}
.h2{height:44.828437px;}
.h5{height:45.101250px;}
.h1d{height:47.836406px;}
.h7{height:48.013594px;}
.h11{height:49.097812px;}
.ha{height:49.848750px;}
.h4{height:53.067656px;}
.h3{height:53.367188px;}
.h9{height:53.645625px;}
.h25{height:57.600000px;}
.h27{height:57.960000px;}
.h29{height:58.121719px;}
.h26{height:59.076000px;}
.h14{height:60.155156px;}
.h10{height:63.175781px;}
.h1b{height:341.385000px;}
.h1a{height:343.545000px;}
.h15{height:357.945000px;}
.h1e{height:360.105000px;}
.h1f{height:387.465000px;}
.hd{height:449.745000px;}
.hc{height:537.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:61.236000px;}
.wc{width:82.836000px;}
.wb{width:84.276000px;}
.we{width:105.156000px;}
.w12{width:126.756000px;}
.w11{width:252.105000px;}
.w13{width:265.065000px;}
.w10{width:344.670000px;}
.w9{width:345.030000px;}
.w7{width:347.910000px;}
.w4{width:348.630000px;}
.w3{width:349.350000px;}
.w6{width:350.070000px;}
.wa{width:350.430000px;}
.wf{width:679.245000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w8{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3b{left:7.560000px;}
.xa{left:8.640000px;}
.x28{left:11.880000px;}
.x32{left:13.320000px;}
.x3f{left:15.480000px;}
.x2d{left:18.000000px;}
.x2e{left:23.076000px;}
.x26{left:29.520000px;}
.x40{left:86.430000px;}
.x9{left:97.596000px;}
.x21{left:98.676000px;}
.x7{left:106.235987px;}
.x3e{left:108.399000px;}
.xe{left:110.915987px;}
.x16{left:112.719000px;}
.x41{left:117.035987px;}
.x18{left:133.271987px;}
.x20{left:137.231987px;}
.xc{left:146.591987px;}
.x11{left:150.914987px;}
.x42{left:159.554987px;}
.x37{left:162.434973px;}
.x38{left:167.474987px;}
.x39{left:174.314973px;}
.x3a{left:179.354987px;}
.x14{left:180.794987px;}
.x1b{left:184.754973px;}
.x1d{left:186.194987px;}
.x1c{left:189.794987px;}
.x12{left:196.634987px;}
.x1e{left:222.224973px;}
.x1f{left:227.264987px;}
.xf{left:234.464987px;}
.x13{left:242.744987px;}
.x2{left:254.264987px;}
.x31{left:272.985000px;}
.x6{left:274.064987px;}
.xd{left:304.304987px;}
.x2b{left:309.749973px;}
.xb{left:312.990000px;}
.x2c{left:314.789987px;}
.x10{left:321.629987px;}
.x25{left:327.750000px;}
.x33{left:332.069973px;}
.x34{left:337.109987px;}
.x17{left:339.624000px;}
.x22{left:342.864000px;}
.x24{left:348.270000px;}
.x3c{left:351.510000px;}
.x5{left:362.669987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x23{left:444.420000px;}
.x8{left:446.579987px;}
.x15{left:447.660000px;}
.x27{left:454.140000px;}
.x3d{left:478.980000px;}
.x19{left:571.169973px;}
.x1a{left:576.254987px;}
.x36{left:656.214000px;}
.x30{left:662.334000px;}
.x35{left:664.854000px;}
.x2f{left:667.014000px;}
.x2a{left:758.849987px;}
.x29{left:770.009987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-1.264000pt;}
.ls1b{letter-spacing:-1.002667pt;}
.ls11{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.837333pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.442667pt;}
.lsf{letter-spacing:-0.432533pt;}
.lsa{letter-spacing:-0.414933pt;}
.ls12{letter-spacing:-0.278933pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.ls15{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.414933pt;}
.ls14{letter-spacing:0.442667pt;}
.ls0{letter-spacing:0.442880pt;}
.ls3{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.650667pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls17{letter-spacing:3.200000pt;}
.lsc{letter-spacing:4.480000pt;}
.lse{letter-spacing:5.760000pt;}
.ls1a{letter-spacing:8.320000pt;}
.ls19{letter-spacing:12.160000pt;}
.ls18{letter-spacing:16.000000pt;}
.ls16{letter-spacing:31.002027pt;}
.ls5{letter-spacing:36.254720pt;}
.lsb{letter-spacing:36.265387pt;}
.ls6{letter-spacing:36.361387pt;}
.ls20{letter-spacing:37.402027pt;}
.ls1f{letter-spacing:66.842027pt;}
.ls2{letter-spacing:174.858667pt;}
.ls4{letter-spacing:964.885333pt;}
.ws9{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.854933pt;}
.ws2{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.025067pt;}
.ws5{word-spacing:-13.007467pt;}
.ws7{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.881067pt;}
.ws0{word-spacing:-11.717333pt;}
.ws8{word-spacing:-10.880000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-6.141440pt;}
._1f{margin-left:-4.011520pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._7{width:3.002453pt;}
._b{width:3.946667pt;}
._a{width:4.977493pt;}
._c{width:5.952853pt;}
._d{width:7.636053pt;}
._8{width:8.547840pt;}
._9{width:9.623040pt;}
._11{width:10.867200pt;}
._14{width:12.049920pt;}
._1e{width:13.476267pt;}
._18{width:14.369280pt;}
._17{width:15.436800pt;}
._16{width:16.780800pt;}
._10{width:17.963520pt;}
._f{width:18.977280pt;}
._e{width:20.160000pt;}
._15{width:21.265920pt;}
._13{width:22.640640pt;}
._12{width:24.030720pt;}
._19{width:25.267200pt;}
._1a{width:26.634240pt;}
._21{width:27.892053pt;}
._20{width:29.184427pt;}
._1b{width:30.327893pt;}
._22{width:32.051627pt;}
._26{width:33.381973pt;}
._29{width:44.897280pt;}
._28{width:47.093760pt;}
._23{width:49.090560pt;}
._27{width:87.628800pt;}
._24{width:183.697920pt;}
._25{width:336.376320pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._1c{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y48{bottom:2.880000pt;}
.ybc{bottom:3.200000pt;}
.y122{bottom:4.160000pt;}
.ybe{bottom:4.200000pt;}
.yc9{bottom:4.480000pt;}
.y124{bottom:5.440000pt;}
.ycb{bottom:6.720000pt;}
.y31{bottom:10.560000pt;}
.ycf{bottom:15.360000pt;}
.y128{bottom:17.920000pt;}
.y47{bottom:18.240000pt;}
.y120{bottom:19.520000pt;}
.yb0{bottom:20.160000pt;}
.y11e{bottom:20.480000pt;}
.y11d{bottom:20.800000pt;}
.y12b{bottom:23.680000pt;}
.y12e{bottom:24.640000pt;}
.y46{bottom:33.600000pt;}
.y30{bottom:33.914667pt;}
.ye{bottom:38.720000pt;}
.y12a{bottom:39.040000pt;}
.y12d{bottom:40.000000pt;}
.y45{bottom:56.640000pt;}
.y2f{bottom:57.274667pt;}
.yb1{bottom:57.640000pt;}
.yc{bottom:60.800000pt;}
.y2e{bottom:80.674667pt;}
.ya{bottom:84.192000pt;}
.y44{bottom:87.680000pt;}
.y2d{bottom:104.034667pt;}
.y43{bottom:110.760000pt;}
.y64{bottom:115.872000pt;}
.y1d{bottom:117.792000pt;}
.y149{bottom:128.672000pt;}
.y63{bottom:129.632000pt;}
.y42{bottom:133.800000pt;}
.yd1{bottom:135.066667pt;}
.y2c{bottom:135.074667pt;}
.yae{bottom:143.386667pt;}
.y62{bottom:143.706667pt;}
.y8a{bottom:146.586667pt;}
.yd8{bottom:148.506667pt;}
.y61{bottom:149.146667pt;}
.y148{bottom:151.706667pt;}
.yd0{bottom:156.186667pt;}
.y41{bottom:156.840000pt;}
.yad{bottom:157.146667pt;}
.yc7{bottom:157.466667pt;}
.y2b{bottom:158.114667pt;}
.y60{bottom:158.746667pt;}
.yd7{bottom:159.066667pt;}
.yc6{bottom:162.266667pt;}
.y89{bottom:169.626667pt;}
.yac{bottom:170.906667pt;}
.y5f{bottom:172.826667pt;}
.y147{bottom:174.746667pt;}
.y5e{bottom:177.666667pt;}
.y40{bottom:179.880000pt;}
.y2a{bottom:181.181333pt;}
.y16a{bottom:181.506667pt;}
.yab{bottom:184.706667pt;}
.y5d{bottom:188.226667pt;}
.y121{bottom:188.546667pt;}
.y88{bottom:192.706667pt;}
.y146{bottom:197.826667pt;}
.yaa{bottom:198.466667pt;}
.yc5{bottom:199.106667pt;}
.y110{bottom:201.666667pt;}
.ya9{bottom:202.626667pt;}
.y3f{bottom:202.920000pt;}
.y29{bottom:204.221333pt;}
.y5c{bottom:204.866667pt;}
.y169{bottom:205.826667pt;}
.y111{bottom:206.466667pt;}
.y187{bottom:209.666667pt;}
.ya8{bottom:212.226667pt;}
.y87{bottom:215.426667pt;}
.y145{bottom:220.866667pt;}
.y11f{bottom:221.186667pt;}
.yc3{bottom:222.146667pt;}
.y10f{bottom:224.706667pt;}
.y3e{bottom:225.666667pt;}
.ya7{bottom:226.306667pt;}
.y28{bottom:226.941333pt;}
.yc4{bottom:226.946667pt;}
.y5b{bottom:227.906667pt;}
.y168{bottom:228.866667pt;}
.y186{bottom:232.706667pt;}
.y86{bottom:238.466667pt;}
.ya6{bottom:240.066667pt;}
.yee{bottom:240.386667pt;}
.y144{bottom:243.906667pt;}
.yc2{bottom:245.186667pt;}
.y10e{bottom:247.746667pt;}
.y3d{bottom:248.706667pt;}
.y27{bottom:249.981333pt;}
.y5a{bottom:250.626667pt;}
.y167{bottom:253.186667pt;}
.ya5{bottom:253.826667pt;}
.y185{bottom:255.746667pt;}
.y85{bottom:261.506667pt;}
.yec{bottom:263.426667pt;}
.y143{bottom:266.946667pt;}
.ya4{bottom:267.586667pt;}
.yc1{bottom:267.906667pt;}
.yed{bottom:268.226667pt;}
.y10d{bottom:270.786667pt;}
.y3c{bottom:271.746667pt;}
.y26{bottom:273.021333pt;}
.y59{bottom:273.666667pt;}
.y166{bottom:277.186667pt;}
.y184{bottom:280.066667pt;}
.ya3{bottom:281.346667pt;}
.y84{bottom:284.546667pt;}
.yeb{bottom:286.466667pt;}
.y11c{bottom:287.453333pt;}
.yc0{bottom:288.093333pt;}
.y142{bottom:289.693333pt;}
.y10c{bottom:293.853333pt;}
.y3b{bottom:294.786667pt;}
.ya2{bottom:295.133333pt;}
.y25{bottom:296.101333pt;}
.y58{bottom:296.733333pt;}
.ya1{bottom:299.293333pt;}
.y165{bottom:301.533333pt;}
.y183{bottom:303.133333pt;}
.yc8{bottom:308.893333pt;}
.ya0{bottom:309.213333pt;}
.yea{bottom:309.533333pt;}
.y141{bottom:312.733333pt;}
.y83{bottom:315.613333pt;}
.y10b{bottom:316.893333pt;}
.y3a{bottom:317.826667pt;}
.y24{bottom:319.141333pt;}
.y57{bottom:319.773333pt;}
.y164{bottom:324.573333pt;}
.y182{bottom:327.133333pt;}
.y11b{bottom:332.253333pt;}
.ye9{bottom:332.573333pt;}
.y140{bottom:335.773333pt;}
.y82{bottom:338.653333pt;}
.y10a{bottom:339.933333pt;}
.y39{bottom:340.906667pt;}
.y23{bottom:342.181333pt;}
.y56{bottom:342.813333pt;}
.y163{bottom:348.893333pt;}
.y181{bottom:350.173333pt;}
.ye8{bottom:355.613333pt;}
.y13f{bottom:358.813333pt;}
.y81{bottom:361.693333pt;}
.y109{bottom:362.653333pt;}
.y11a{bottom:362.973333pt;}
.y38{bottom:363.946667pt;}
.y22{bottom:365.221333pt;}
.y54{bottom:365.853333pt;}
.y55{bottom:370.653333pt;}
.y162{bottom:371.933333pt;}
.y180{bottom:374.493333pt;}
.ye7{bottom:378.653333pt;}
.y13e{bottom:381.853333pt;}
.y80{bottom:384.413333pt;}
.y108{bottom:385.693333pt;}
.y119{bottom:386.013333pt;}
.y37{bottom:387.306667pt;}
.y21{bottom:388.261333pt;}
.y52{bottom:388.893333pt;}
.y53{bottom:393.693333pt;}
.y161{bottom:396.253333pt;}
.y17f{bottom:398.813333pt;}
.ye6{bottom:401.733333pt;}
.y13d{bottom:404.933333pt;}
.y7f{bottom:407.493333pt;}
.y107{bottom:408.773333pt;}
.y118{bottom:409.093333pt;}
.y20{bottom:411.008000pt;}
.y51{bottom:411.653333pt;}
.y160{bottom:420.293333pt;}
.y17e{bottom:421.893333pt;}
.yd2{bottom:423.493333pt;}
.ye5{bottom:424.453333pt;}
.y13c{bottom:427.973333pt;}
.y7e{bottom:430.533333pt;}
.y106{bottom:431.813333pt;}
.y117{bottom:432.133333pt;}
.y1f{bottom:434.048000pt;}
.y50{bottom:434.693333pt;}
.y15f{bottom:443.333333pt;}
.y17d{bottom:445.893333pt;}
.ye4{bottom:447.493333pt;}
.y13b{bottom:450.693333pt;}
.y7d{bottom:453.573333pt;}
.y105{bottom:454.853333pt;}
.y9f{bottom:455.173333pt;}
.y1e{bottom:457.408000pt;}
.y4f{bottom:457.733333pt;}
.yce{bottom:460.293333pt;}
.y15e{bottom:467.653333pt;}
.y17c{bottom:470.213333pt;}
.ye3{bottom:470.533333pt;}
.y13a{bottom:473.733333pt;}
.y7c{bottom:476.613333pt;}
.y104{bottom:477.893333pt;}
.y9e{bottom:478.213333pt;}
.y4e{bottom:480.773333pt;}
.yd6{bottom:489.413333pt;}
.yba{bottom:490.053333pt;}
.y15d{bottom:490.693333pt;}
.y17b{bottom:493.253333pt;}
.ye2{bottom:493.573333pt;}
.y139{bottom:496.773333pt;}
.y7b{bottom:499.653333pt;}
.y103{bottom:500.933333pt;}
.y9d{bottom:501.253333pt;}
.y4d{bottom:503.813333pt;}
.y15c{bottom:515.040000pt;}
.ye1{bottom:516.640000pt;}
.yb9{bottom:517.280000pt;}
.y17a{bottom:517.600000pt;}
.y138{bottom:519.840000pt;}
.y7a{bottom:522.720000pt;}
.y102{bottom:523.680000pt;}
.y9c{bottom:524.320000pt;}
.y4c{bottom:526.880000pt;}
.y15b{bottom:539.040000pt;}
.ye0{bottom:539.680000pt;}
.yb8{bottom:540.320000pt;}
.y179{bottom:540.640000pt;}
.y137{bottom:542.880000pt;}
.y79{bottom:545.760000pt;}
.y9b{bottom:547.040000pt;}
.y4b{bottom:549.920000pt;}
.ydf{bottom:562.720000pt;}
.yb7{bottom:563.360000pt;}
.y178{bottom:564.640000pt;}
.y136{bottom:565.920000pt;}
.y78{bottom:568.480000pt;}
.y9a{bottom:570.080000pt;}
.y4a{bottom:572.960000pt;}
.y101{bottom:578.080000pt;}
.yde{bottom:585.440000pt;}
.yb6{bottom:586.080000pt;}
.y15a{bottom:586.400000pt;}
.y177{bottom:587.680000pt;}
.y135{bottom:588.960000pt;}
.y77{bottom:591.520000pt;}
.y99{bottom:593.120000pt;}
.y1c{bottom:600.480000pt;}
.y100{bottom:601.120000pt;}
.y49{bottom:603.680000pt;}
.ydd{bottom:608.480000pt;}
.yb5{bottom:609.120000pt;}
.y159{bottom:610.720000pt;}
.y134{bottom:612.000000pt;}
.y76{bottom:614.560000pt;}
.y1b{bottom:615.840000pt;}
.y116{bottom:616.160000pt;}
.y98{bottom:616.480000pt;}
.yff{bottom:624.186667pt;}
.y36{bottom:626.426667pt;}
.ybf{bottom:629.946667pt;}
.y1a{bottom:630.906667pt;}
.ydc{bottom:631.546667pt;}
.yb4{bottom:632.186667pt;}
.y158{bottom:633.786667pt;}
.y133{bottom:635.066667pt;}
.y75{bottom:637.626667pt;}
.y115{bottom:639.226667pt;}
.yfe{bottom:647.226667pt;}
.y96{bottom:647.546667pt;}
.y97{bottom:652.346667pt;}
.ydb{bottom:654.586667pt;}
.yb3{bottom:655.226667pt;}
.y19{bottom:656.506667pt;}
.y157{bottom:657.786667pt;}
.y132{bottom:658.426667pt;}
.y176{bottom:659.386667pt;}
.y74{bottom:660.666667pt;}
.yca{bottom:660.986667pt;}
.y114{bottom:662.266667pt;}
.yda{bottom:669.946667pt;}
.yfd{bottom:670.266667pt;}
.y95{bottom:670.586667pt;}
.yb2{bottom:672.826667pt;}
.y18{bottom:674.426667pt;}
.y131{bottom:679.546667pt;}
.y156{bottom:680.826667pt;}
.y175{bottom:682.426667pt;}
.yd9{bottom:683.066667pt;}
.y73{bottom:683.706667pt;}
.y113{bottom:685.306667pt;}
.yaf{bottom:685.946667pt;}
.y17{bottom:692.026667pt;}
.yfc{bottom:693.306667pt;}
.y94{bottom:693.626667pt;}
.y155{bottom:705.146667pt;}
.y174{bottom:706.426667pt;}
.y72{bottom:706.746667pt;}
.y112{bottom:708.346667pt;}
.y130{bottom:710.906667pt;}
.y16{bottom:715.386667pt;}
.yfb{bottom:716.026667pt;}
.y93{bottom:716.346667pt;}
.y154{bottom:728.186667pt;}
.y15{bottom:729.466667pt;}
.y71{bottom:729.786667pt;}
.yfa{bottom:739.106667pt;}
.y92{bottom:739.426667pt;}
.y12f{bottom:742.306667pt;}
.y14{bottom:744.546667pt;}
.y70{bottom:752.546667pt;}
.y173{bottom:753.826667pt;}
.y13{bottom:759.906667pt;}
.yf9{bottom:762.146667pt;}
.y91{bottom:762.466667pt;}
.y12{bottom:775.266667pt;}
.y6f{bottom:775.586667pt;}
.y153{bottom:776.546667pt;}
.y172{bottom:776.866667pt;}
.ycd{bottom:777.186667pt;}
.yf8{bottom:785.186667pt;}
.y90{bottom:785.506667pt;}
.y11{bottom:790.626667pt;}
.y12c{bottom:794.466667pt;}
.y6e{bottom:798.626667pt;}
.ycc{bottom:800.546667pt;}
.y152{bottom:800.866667pt;}
.y171{bottom:801.186667pt;}
.y10{bottom:805.986667pt;}
.yf7{bottom:808.226667pt;}
.y8f{bottom:808.546667pt;}
.yd5{bottom:813.346667pt;}
.yf{bottom:821.346667pt;}
.y6d{bottom:821.666667pt;}
.y151{bottom:823.906667pt;}
.yd4{bottom:830.306667pt;}
.yf6{bottom:831.266667pt;}
.y8e{bottom:831.586667pt;}
.y9{bottom:836.706667pt;}
.y6c{bottom:844.706667pt;}
.y129{bottom:847.613333pt;}
.y150{bottom:848.253333pt;}
.y8{bottom:852.093333pt;}
.yf5{bottom:854.333333pt;}
.y8d{bottom:854.653333pt;}
.y7{bottom:864.573333pt;}
.y6b{bottom:868.413333pt;}
.y14f{bottom:871.293333pt;}
.yf4{bottom:877.373333pt;}
.y8c{bottom:877.693333pt;}
.yd3{bottom:882.493333pt;}
.y14e{bottom:894.013333pt;}
.y170{bottom:895.613333pt;}
.y127{bottom:899.773333pt;}
.yf3{bottom:900.093333pt;}
.y6a{bottom:900.413333pt;}
.y6{bottom:913.213333pt;}
.y14d{bottom:918.333333pt;}
.y16f{bottom:919.933333pt;}
.yf2{bottom:923.133333pt;}
.y69{bottom:923.453333pt;}
.y126{bottom:930.813333pt;}
.y5{bottom:935.293333pt;}
.y14c{bottom:941.373333pt;}
.y16e{bottom:942.653333pt;}
.yf1{bottom:946.173333pt;}
.y68{bottom:946.493333pt;}
.y4{bottom:953.533333pt;}
.ybd{bottom:957.693333pt;}
.ybb{bottom:959.653333pt;}
.y14b{bottom:965.733333pt;}
.y16d{bottom:967.013333pt;}
.yf0{bottom:969.253333pt;}
.y67{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.y125{bottom:973.093333pt;}
.y14a{bottom:988.773333pt;}
.y2{bottom:990.693333pt;}
.y16c{bottom:991.333333pt;}
.yef{bottom:992.293333pt;}
.y66{bottom:992.613333pt;}
.y123{bottom:994.213333pt;}
.y1{bottom:1005.733333pt;}
.y16b{bottom:1014.373333pt;}
.y65{bottom:1015.653333pt;}
.y8b{bottom:1020.453333pt;}
.y35{bottom:1036.773333pt;}
.y34{bottom:1049.253333pt;}
.y33{bottom:1067.813333pt;}
.y32{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h1c{height:15.040000pt;}
.h16{height:16.320000pt;}
.h17{height:17.632000pt;}
.h18{height:18.560000pt;}
.h19{height:22.720000pt;}
.hf{height:25.616250pt;}
.h13{height:28.078125pt;}
.he{height:30.324375pt;}
.h24{height:30.400000pt;}
.h28{height:30.720000pt;}
.h23{height:30.752000pt;}
.h22{height:32.000000pt;}
.h21{height:32.960000pt;}
.h20{height:33.280000pt;}
.hb{height:37.063125pt;}
.h12{height:38.823750pt;}
.h2{height:39.847500pt;}
.h5{height:40.090000pt;}
.h1d{height:42.521250pt;}
.h7{height:42.678750pt;}
.h11{height:43.642500pt;}
.ha{height:44.310000pt;}
.h4{height:47.171250pt;}
.h3{height:47.437500pt;}
.h9{height:47.685000pt;}
.h25{height:51.200000pt;}
.h27{height:51.520000pt;}
.h29{height:51.663750pt;}
.h26{height:52.512000pt;}
.h14{height:53.471250pt;}
.h10{height:56.156250pt;}
.h1b{height:303.453333pt;}
.h1a{height:305.373333pt;}
.h15{height:318.173333pt;}
.h1e{height:320.093333pt;}
.h1f{height:344.413333pt;}
.hd{height:399.773333pt;}
.hc{height:477.893333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:54.432000pt;}
.wc{width:73.632000pt;}
.wb{width:74.912000pt;}
.we{width:93.472000pt;}
.w12{width:112.672000pt;}
.w11{width:224.093333pt;}
.w13{width:235.613333pt;}
.w10{width:306.373333pt;}
.w9{width:306.693333pt;}
.w7{width:309.253333pt;}
.w4{width:309.893333pt;}
.w3{width:310.533333pt;}
.w6{width:311.173333pt;}
.wa{width:311.493333pt;}
.wf{width:603.773333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w8{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3b{left:6.720000pt;}
.xa{left:7.680000pt;}
.x28{left:10.560000pt;}
.x32{left:11.840000pt;}
.x3f{left:13.760000pt;}
.x2d{left:16.000000pt;}
.x2e{left:20.512000pt;}
.x26{left:26.240000pt;}
.x40{left:76.826667pt;}
.x9{left:86.752000pt;}
.x21{left:87.712000pt;}
.x7{left:94.431988pt;}
.x3e{left:96.354667pt;}
.xe{left:98.591988pt;}
.x16{left:100.194667pt;}
.x41{left:104.031988pt;}
.x18{left:118.463988pt;}
.x20{left:121.983988pt;}
.xc{left:130.303988pt;}
.x11{left:134.146655pt;}
.x42{left:141.826655pt;}
.x37{left:144.386643pt;}
.x38{left:148.866655pt;}
.x39{left:154.946643pt;}
.x3a{left:159.426655pt;}
.x14{left:160.706655pt;}
.x1b{left:164.226643pt;}
.x1d{left:165.506655pt;}
.x1c{left:168.706655pt;}
.x12{left:174.786655pt;}
.x1e{left:197.533310pt;}
.x1f{left:202.013322pt;}
.xf{left:208.413322pt;}
.x13{left:215.773322pt;}
.x2{left:226.013322pt;}
.x31{left:242.653333pt;}
.x6{left:243.613322pt;}
.xd{left:270.493322pt;}
.x2b{left:275.333310pt;}
.xb{left:278.213333pt;}
.x2c{left:279.813322pt;}
.x10{left:285.893322pt;}
.x25{left:291.333333pt;}
.x33{left:295.173310pt;}
.x34{left:299.653322pt;}
.x17{left:301.888000pt;}
.x22{left:304.768000pt;}
.x24{left:309.573333pt;}
.x3c{left:312.453333pt;}
.x5{left:322.373322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x23{left:395.040000pt;}
.x8{left:396.959988pt;}
.x15{left:397.920000pt;}
.x27{left:403.680000pt;}
.x3d{left:425.760000pt;}
.x19{left:507.706643pt;}
.x1a{left:512.226655pt;}
.x36{left:583.301333pt;}
.x30{left:588.741333pt;}
.x35{left:590.981333pt;}
.x2f{left:592.901333pt;}
.x2a{left:674.533322pt;}
.x29{left:684.453322pt;}
.x1{left:699.493322pt;}
}




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