
    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_6e7029689e4dc84da711b555.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_890a31785032a4632503a865.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012207;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_bf05033bfe27989908ce003d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_3f52795428613cc21436a422.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.012207;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_d76f641bedf75c591bfd6fe2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.800781;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_f7c6d8e264deb9610df26962.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_2f9a14fe29922775231e28c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8cdae420338e6076331a684c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f09648890fd942814ee4e9b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_53cde90bf29f519da503a2e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.987305;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_51d7630f9c184dae5429affc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.034180;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_f1c4c58af6e787c667c3c360.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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:-15.600000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls7{letter-spacing:-1.182000px;}
.ls1f{letter-spacing:-0.684000px;}
.ls13{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.600000px;}
.ls20{letter-spacing:-0.594000px;}
.lsc{letter-spacing:-0.384000px;}
.ls8{letter-spacing:-0.300000px;}
.ls1d{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.012000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.318000px;}
.ls6{letter-spacing:0.396000px;}
.ls1e{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.660000px;}
.ls22{letter-spacing:0.750000px;}
.ls12{letter-spacing:0.840000px;}
.ls1a{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.260000px;}
.lse{letter-spacing:1.320000px;}
.ls1b{letter-spacing:1.740000px;}
.ls15{letter-spacing:1.800000px;}
.ls17{letter-spacing:2.940000px;}
.ls10{letter-spacing:5.400000px;}
.ls18{letter-spacing:6.600000px;}
.ls1{letter-spacing:7.020000px;}
.ls1c{letter-spacing:7.740000px;}
.ls11{letter-spacing:7.800000px;}
.ls21{letter-spacing:10.500000px;}
.ls0{letter-spacing:10.800000px;}
.lsa{letter-spacing:45.900000px;}
.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;}
}
.ws11{word-spacing:-60.000000px;}
.ws12{word-spacing:-15.900000px;}
.wse{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.120000px;}
.ws10{word-spacing:-15.060000px;}
.wsc{word-spacing:-15.000000px;}
.ws13{word-spacing:-14.760000px;}
.wsf{word-spacing:-14.340000px;}
.ws15{word-spacing:-14.100000px;}
.ws17{word-spacing:-14.040000px;}
.ws3{word-spacing:-13.896000px;}
.ws7{word-spacing:-13.818000px;}
.ws6{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws18{word-spacing:-12.906000px;}
.ws16{word-spacing:-12.900000px;}
.ws5{word-spacing:-12.318000px;}
.ws0{word-spacing:-12.300000px;}
.ws2{word-spacing:-12.000000px;}
.wsb{word-spacing:-11.616000px;}
.ws8{word-spacing:-11.100000px;}
.ws9{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.000000px;}
.ws14{word-spacing:-8.400000px;}
.wsa{word-spacing:0.000000px;}
._26{margin-left:-4.872000px;}
._9{margin-left:-3.834000px;}
._8{margin-left:-2.316000px;}
._1{margin-left:-1.056000px;}
._0{width:1.188000px;}
._6{width:2.484000px;}
._7{width:3.750000px;}
._5{width:5.088000px;}
._b{width:6.372000px;}
._a{width:7.506000px;}
._14{width:8.580000px;}
._4{width:9.600000px;}
._c{width:10.680000px;}
._12{width:11.760000px;}
._d{width:13.752000px;}
._27{width:15.006000px;}
._10{width:17.004000px;}
._11{width:18.066000px;}
._15{width:19.128000px;}
._1e{width:20.196000px;}
._1d{width:21.222000px;}
._20{width:22.704000px;}
._1f{width:24.300000px;}
._1c{width:28.074000px;}
._1b{width:30.024000px;}
._21{width:31.104000px;}
._3{width:37.500000px;}
._e{width:45.714000px;}
._f{width:46.962000px;}
._18{width:48.066000px;}
._1a{width:49.494000px;}
._19{width:50.706000px;}
._24{width:57.294000px;}
._25{width:58.806000px;}
._28{width:69.576000px;}
._2a{width:70.782000px;}
._29{width:72.336000px;}
._16{width:73.350000px;}
._23{width:81.468000px;}
._22{width:82.836000px;}
._2d{width:127.872000px;}
._2b{width:128.952000px;}
._2c{width:130.116000px;}
._2{width:345.024000px;}
._17{width:1838.784000px;}
._13{width:1862.784000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fsa{font-size:33.600000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:3.000000px;}
.y110{bottom:4.500000px;}
.y108{bottom:4.800000px;}
.y3{bottom:9.585000px;}
.y4{bottom:20.385000px;}
.y4e{bottom:21.000000px;}
.y10f{bottom:24.900000px;}
.y11a{bottom:24.930000px;}
.y2{bottom:28.500000px;}
.y7{bottom:28.837500px;}
.y4d{bottom:39.000000px;}
.y6{bottom:42.637500px;}
.y10e{bottom:45.000000px;}
.y116{bottom:45.300000px;}
.y119{bottom:45.330000px;}
.y55{bottom:46.837500px;}
.y10a{bottom:55.200000px;}
.y113{bottom:55.215000px;}
.y4c{bottom:57.000000px;}
.y54{bottom:64.837500px;}
.y10d{bottom:65.400000px;}
.y118{bottom:65.430000px;}
.y4b{bottom:75.037500px;}
.y112{bottom:75.600000px;}
.y53{bottom:80.737500px;}
.y10c{bottom:85.500000px;}
.y11b{bottom:85.830000px;}
.y115{bottom:85.845000px;}
.y34{bottom:90.037500px;}
.y4a{bottom:93.037500px;}
.ye2{bottom:96.037500px;}
.y102{bottom:99.337500px;}
.y11e{bottom:105.900000px;}
.y10b{bottom:105.945000px;}
.y49{bottom:108.037500px;}
.ye1{bottom:115.237500px;}
.y33{bottom:115.837500px;}
.y14f{bottom:116.137500px;}
.y101{bottom:118.537500px;}
.y178{bottom:119.737500px;}
.y120{bottom:125.737500px;}
.y11d{bottom:126.000000px;}
.y114{bottom:126.045000px;}
.yb8{bottom:126.637500px;}
.ye0{bottom:134.437500px;}
.y32{bottom:135.637500px;}
.y100{bottom:137.737500px;}
.y89{bottom:139.837500px;}
.y14e{bottom:140.437500px;}
.y13b{bottom:141.037500px;}
.y177{bottom:144.337500px;}
.y11f{bottom:144.937500px;}
.yb7{bottom:145.837500px;}
.yf4{bottom:149.137500px;}
.y48{bottom:151.837500px;}
.ydf{bottom:153.630000px;}
.y31{bottom:155.430000px;}
.yff{bottom:156.930000px;}
.y88{bottom:159.030000px;}
.y13a{bottom:160.245000px;}
.yb6{bottom:165.075000px;}
.y47{bottom:168.037500px;}
.yf3{bottom:168.375000px;}
.y176{bottom:168.675000px;}
.yde{bottom:172.875000px;}
.yfe{bottom:176.175000px;}
.y87{bottom:178.275000px;}
.y11c{bottom:178.875000px;}
.y139{bottom:179.475000px;}
.y46{bottom:184.237500px;}
.yb5{bottom:184.275000px;}
.yf2{bottom:187.575000px;}
.y14d{bottom:189.375000px;}
.ydd{bottom:192.075000px;}
.y30{bottom:192.675000px;}
.y175{bottom:193.275000px;}
.yfd{bottom:195.375000px;}
.y86{bottom:197.475000px;}
.y138{bottom:198.675000px;}
.y45{bottom:200.437500px;}
.yb4{bottom:203.475000px;}
.yf1{bottom:206.775000px;}
.ydc{bottom:211.275000px;}
.y2f{bottom:212.175000px;}
.y14c{bottom:213.975000px;}
.yfc{bottom:214.575000px;}
.y85{bottom:216.675000px;}
.y174{bottom:217.575000px;}
.y137{bottom:217.875000px;}
.yf0{bottom:225.975000px;}
.yb3{bottom:227.175000px;}
.ydb{bottom:230.475000px;}
.y2e{bottom:231.675000px;}
.y44{bottom:232.537500px;}
.yfb{bottom:233.775000px;}
.y84{bottom:235.875000px;}
.y136{bottom:237.075000px;}
.y14b{bottom:238.275000px;}
.y173{bottom:242.175000px;}
.yef{bottom:245.175000px;}
.yda{bottom:249.675000px;}
.y43{bottom:250.567500px;}
.y2d{bottom:251.175000px;}
.yfa{bottom:252.975000px;}
.y83{bottom:255.075000px;}
.y135{bottom:256.275000px;}
.y14a{bottom:262.875000px;}
.yb2{bottom:264.375000px;}
.y172{bottom:266.475000px;}
.y42{bottom:268.582500px;}
.yd9{bottom:268.875000px;}
.y2c{bottom:270.675000px;}
.yf9{bottom:272.175000px;}
.y82{bottom:274.275000px;}
.y134{bottom:275.475000px;}
.yb1{bottom:283.575000px;}
.y41{bottom:286.582500px;}
.y149{bottom:287.175000px;}
.y2b{bottom:290.175000px;}
.y171{bottom:291.075000px;}
.yf8{bottom:291.375000px;}
.yd8{bottom:292.575000px;}
.y81{bottom:293.475000px;}
.y133{bottom:294.675000px;}
.yb0{bottom:303.075000px;}
.y40{bottom:304.567500px;}
.y2a{bottom:309.675000px;}
.yf7{bottom:310.575000px;}
.y148{bottom:311.775000px;}
.y80{bottom:312.675000px;}
.y132{bottom:313.875000px;}
.y170{bottom:315.375000px;}
.y117{bottom:321.075000px;}
.yaf{bottom:322.275000px;}
.y29{bottom:329.175000px;}
.yd7{bottom:330.075000px;}
.y3f{bottom:331.582500px;}
.y7f{bottom:331.875000px;}
.y131{bottom:333.120000px;}
.y147{bottom:336.120000px;}
.y16f{bottom:340.005000px;}
.yee{bottom:341.505000px;}
.yae{bottom:346.005000px;}
.y28{bottom:348.720000px;}
.yd6{bottom:349.320000px;}
.y7e{bottom:351.105000px;}
.y130{bottom:352.620000px;}
.y3e{bottom:358.582500px;}
.y146{bottom:362.220000px;}
.y16e{bottom:364.305000px;}
.yed{bottom:365.220000px;}
.y27{bottom:368.220000px;}
.yd5{bottom:368.505000px;}
.y7d{bottom:370.605000px;}
.y12f{bottom:371.805000px;}
.y3d{bottom:376.582500px;}
.yad{bottom:383.205000px;}
.y26{bottom:387.705000px;}
.yec{bottom:388.920000px;}
.y7c{bottom:389.820000px;}
.y12e{bottom:391.005000px;}
.y3c{bottom:394.567500px;}
.y145{bottom:398.820000px;}
.yac{bottom:402.420000px;}
.yd4{bottom:406.905000px;}
.y25{bottom:407.205000px;}
.y7b{bottom:409.005000px;}
.y12d{bottom:410.205000px;}
.y3b{bottom:412.612500px;}
.y16d{bottom:413.205000px;}
.yab{bottom:421.620000px;}
.y111{bottom:423.105000px;}
.yd3{bottom:426.120000px;}
.y24{bottom:426.705000px;}
.y7a{bottom:428.205000px;}
.y12c{bottom:429.420000px;}
.y3a{bottom:430.612500px;}
.y144{bottom:434.205000px;}
.y16c{bottom:437.820000px;}
.yaa{bottom:440.820000px;}
.yd2{bottom:445.320000px;}
.y23{bottom:446.205000px;}
.y79{bottom:447.405000px;}
.y39{bottom:448.612500px;}
.y12b{bottom:448.620000px;}
.y143{bottom:451.905000px;}
.ya9{bottom:460.005000px;}
.y16b{bottom:462.120000px;}
.yd1{bottom:464.505000px;}
.y22{bottom:465.705000px;}
.y38{bottom:466.612500px;}
.y78{bottom:466.620000px;}
.y12a{bottom:467.820000px;}
.ya8{bottom:479.205000px;}
.yd0{bottom:483.705000px;}
.y37{bottom:484.612500px;}
.y21{bottom:485.205000px;}
.y77{bottom:485.820000px;}
.y16a{bottom:486.705000px;}
.y129{bottom:487.005000px;}
.ya7{bottom:498.405000px;}
.y36{bottom:502.612500px;}
.ycf{bottom:502.950000px;}
.y20{bottom:504.750000px;}
.y76{bottom:505.050000px;}
.y128{bottom:506.250000px;}
.y169{bottom:511.050000px;}
.ya6{bottom:517.650000px;}
.y35{bottom:520.612500px;}
.yce{bottom:522.150000px;}
.y142{bottom:522.450000px;}
.y1f{bottom:524.250000px;}
.y127{bottom:525.450000px;}
.y75{bottom:528.150000px;}
.y168{bottom:535.650000px;}
.ya5{bottom:536.850000px;}
.ycd{bottom:541.350000px;}
.y74{bottom:543.450000px;}
.y1e{bottom:543.750000px;}
.y126{bottom:544.650000px;}
.ya4{bottom:556.350000px;}
.y141{bottom:557.550000px;}
.y167{bottom:559.950000px;}
.ycc{bottom:560.850000px;}
.y73{bottom:562.650000px;}
.y1d{bottom:563.250000px;}
.y125{bottom:563.850000px;}
.y109{bottom:565.650000px;}
.ya3{bottom:575.550000px;}
.ycb{bottom:580.050000px;}
.y72{bottom:581.850000px;}
.y1c{bottom:582.750000px;}
.y124{bottom:583.350000px;}
.y166{bottom:584.550000px;}
.y140{bottom:592.650000px;}
.ya2{bottom:594.750000px;}
.yca{bottom:599.250000px;}
.y71{bottom:601.350000px;}
.y1b{bottom:602.250000px;}
.y123{bottom:602.550000px;}
.yeb{bottom:603.750000px;}
.y165{bottom:608.850000px;}
.y13f{bottom:610.350000px;}
.ya1{bottom:618.450000px;}
.y70{bottom:620.550000px;}
.y1a{bottom:621.750000px;}
.y164{bottom:633.450000px;}
.yc9{bottom:637.650000px;}
.y6f{bottom:639.750000px;}
.yea{bottom:640.950000px;}
.y19{bottom:641.250000px;}
.yf6{bottom:642.150000px;}
.y13e{bottom:645.150000px;}
.ya0{bottom:655.650000px;}
.yc8{bottom:656.850000px;}
.y163{bottom:657.750000px;}
.y6e{bottom:658.950000px;}
.ye9{bottom:660.150000px;}
.y18{bottom:660.750000px;}
.y13d{bottom:662.850000px;}
.y9f{bottom:674.880000px;}
.yc7{bottom:676.080000px;}
.y6d{bottom:678.195000px;}
.ye8{bottom:679.380000px;}
.y17{bottom:680.280000px;}
.y162{bottom:682.380000px;}
.y107{bottom:687.780000px;}
.y9e{bottom:694.080000px;}
.yc6{bottom:695.280000px;}
.y6c{bottom:697.380000px;}
.ye7{bottom:698.595000px;}
.y16{bottom:699.780000px;}
.y161{bottom:706.695000px;}
.y9d{bottom:717.195000px;}
.ye6{bottom:717.780000px;}
.yc5{bottom:718.980000px;}
.y15{bottom:719.280000px;}
.y6b{bottom:720.495000px;}
.y106{bottom:721.995000px;}
.y160{bottom:731.280000px;}
.y9c{bottom:732.480000px;}
.y6a{bottom:735.780000px;}
.ye5{bottom:736.995000px;}
.y14{bottom:738.780000px;}
.y9b{bottom:751.680000px;}
.y69{bottom:754.980000px;}
.y15f{bottom:755.580000px;}
.yc4{bottom:756.195000px;}
.y13{bottom:758.280000px;}
.y105{bottom:759.480000px;}
.y68{bottom:774.195000px;}
.y9a{bottom:775.380000px;}
.y12{bottom:777.795000px;}
.y104{bottom:778.695000px;}
.y15e{bottom:780.195000px;}
.y67{bottom:793.380000px;}
.yc3{bottom:794.580000px;}
.y11{bottom:797.295000px;}
.y103{bottom:797.880000px;}
.y99{bottom:799.080000px;}
.y15d{bottom:804.495000px;}
.y66{bottom:812.580000px;}
.yc2{bottom:814.080000px;}
.y10{bottom:817.080000px;}
.yf5{bottom:818.580000px;}
.y15c{bottom:829.080000px;}
.y65{bottom:832.080000px;}
.yc1{bottom:833.295000px;}
.y98{bottom:836.580000px;}
.y64{bottom:851.325000px;}
.yc0{bottom:852.525000px;}
.y15b{bottom:853.425000px;}
.yf{bottom:854.325000px;}
.y97{bottom:855.825000px;}
.ye4{bottom:857.025000px;}
.y63{bottom:870.525000px;}
.ybf{bottom:871.725000px;}
.ye{bottom:873.225000px;}
.y96{bottom:875.025000px;}
.y15a{bottom:878.025000px;}
.y62{bottom:889.725000px;}
.ybe{bottom:890.925000px;}
.y95{bottom:894.225000px;}
.y13c{bottom:895.425000px;}
.y159{bottom:902.325000px;}
.y61{bottom:908.925000px;}
.ybd{bottom:910.125000px;}
.y94{bottom:913.425000px;}
.yd{bottom:914.625000px;}
.y158{bottom:926.925000px;}
.y60{bottom:928.125000px;}
.ybc{bottom:929.325000px;}
.y93{bottom:932.625000px;}
.yc{bottom:934.725000px;}
.y5f{bottom:947.325000px;}
.ybb{bottom:948.525000px;}
.y157{bottom:951.225000px;}
.y92{bottom:951.825000px;}
.ye3{bottom:955.725000px;}
.y5e{bottom:966.525000px;}
.yba{bottom:967.725000px;}
.y91{bottom:971.025000px;}
.y156{bottom:975.825000px;}
.yb{bottom:985.425000px;}
.y5d{bottom:985.725000px;}
.y122{bottom:986.925000px;}
.y90{bottom:990.225000px;}
.yb9{bottom:991.425000px;}
.y155{bottom:1000.125000px;}
.y5c{bottom:1004.925000px;}
.y8f{bottom:1009.455000px;}
.y121{bottom:1010.655000px;}
.ya{bottom:1022.070000px;}
.y5b{bottom:1024.155000px;}
.y154{bottom:1024.755000px;}
.y8e{bottom:1028.670000px;}
.y5a{bottom:1043.355000px;}
.y8d{bottom:1047.855000px;}
.y153{bottom:1049.070000px;}
.y9{bottom:1058.355000px;}
.y59{bottom:1062.855000px;}
.y8c{bottom:1067.355000px;}
.y152{bottom:1073.655000px;}
.y58{bottom:1082.070000px;}
.y8b{bottom:1086.570000px;}
.y8{bottom:1091.370000px;}
.y151{bottom:1097.955000px;}
.y57{bottom:1101.255000px;}
.y8a{bottom:1105.755000px;}
.y150{bottom:1122.570000px;}
.y56{bottom:1124.955000px;}
.y5{bottom:1128.255000px;}
.y1{bottom:1134.570000px;}
.y52{bottom:1144.455000px;}
.y51{bottom:1163.655000px;}
.y50{bottom:1173.570000px;}
.h19{height:20.400000px;}
.h9{height:23.085938px;}
.h12{height:28.197422px;}
.h13{height:28.257422px;}
.hf{height:30.700195px;}
.h10{height:33.632812px;}
.ha{height:35.085938px;}
.h6{height:35.179688px;}
.hb{height:39.418945px;}
.hc{height:39.471680px;}
.hd{height:39.577148px;}
.h18{height:40.100156px;}
.h4{height:43.798828px;}
.h5{height:43.857422px;}
.h7{height:43.974609px;}
.h3{height:48.178711px;}
.h16{height:50.566406px;}
.h2{height:51.637500px;}
.h15{height:59.853516px;}
.h17{height:60.468750px;}
.h11{height:62.460938px;}
.h14{height:74.004654px;}
.h8{height:78.837891px;}
.h1c{height:101.437500px;}
.h1a{height:121.537500px;}
.h1d{height:141.600000px;}
.h1b{height:141.637500px;}
.he{height:535.620000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:126.675000px;}
.w7{width:159.375000px;}
.w6{width:180.975000px;}
.w3{width:339.975000px;}
.w2{width:372.450000px;}
.w8{width:627.795000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:8.700000px;}
.x13{left:9.900000px;}
.x1a{left:12.600000px;}
.x18{left:16.800000px;}
.x1c{left:18.337500px;}
.x12{left:22.200000px;}
.x1d{left:23.737500px;}
.x15{left:24.900000px;}
.x11{left:26.137500px;}
.xe{left:27.337500px;}
.x1e{left:39.300000px;}
.x22{left:41.737500px;}
.x14{left:43.800000px;}
.x23{left:48.900000px;}
.x1{left:54.000000px;}
.x7{left:81.637500px;}
.x26{left:86.137487px;}
.x9{left:89.737487px;}
.x21{left:125.745000px;}
.x25{left:152.445000px;}
.x20{left:156.630000px;}
.x1b{left:168.330000px;}
.x3{left:170.130000px;}
.xd{left:179.144987px;}
.x16{left:209.775000px;}
.xf{left:213.375000px;}
.x10{left:238.575000px;}
.x5{left:249.674987px;}
.x6{left:250.874987px;}
.x24{left:273.075000px;}
.xb{left:276.674987px;}
.xc{left:281.474987px;}
.x17{left:287.175000px;}
.x19{left:290.475000px;}
.x2{left:426.450000px;}
.x8{left:432.749987px;}
.xa{left:627.194987px;}
.x4{left:766.425000px;}
@media print{
.v2{vertical-align:-13.866667pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls7{letter-spacing:-1.050667pt;}
.ls1f{letter-spacing:-0.608000pt;}
.ls13{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls20{letter-spacing:-0.528000pt;}
.lsc{letter-spacing:-0.341333pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls1d{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.010667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.282667pt;}
.ls6{letter-spacing:0.352000pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.586667pt;}
.ls22{letter-spacing:0.666667pt;}
.ls12{letter-spacing:0.746667pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls19{letter-spacing:1.120000pt;}
.lse{letter-spacing:1.173333pt;}
.ls1b{letter-spacing:1.546667pt;}
.ls15{letter-spacing:1.600000pt;}
.ls17{letter-spacing:2.613333pt;}
.ls10{letter-spacing:4.800000pt;}
.ls18{letter-spacing:5.866667pt;}
.ls1{letter-spacing:6.240000pt;}
.ls1c{letter-spacing:6.880000pt;}
.ls11{letter-spacing:6.933333pt;}
.ls21{letter-spacing:9.333333pt;}
.ls0{letter-spacing:9.600000pt;}
.lsa{letter-spacing:40.800000pt;}
.ws11{word-spacing:-53.333333pt;}
.ws12{word-spacing:-14.133333pt;}
.wse{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.386667pt;}
.wsc{word-spacing:-13.333333pt;}
.ws13{word-spacing:-13.120000pt;}
.wsf{word-spacing:-12.746667pt;}
.ws15{word-spacing:-12.533333pt;}
.ws17{word-spacing:-12.480000pt;}
.ws3{word-spacing:-12.352000pt;}
.ws7{word-spacing:-12.282667pt;}
.ws6{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws18{word-spacing:-11.472000pt;}
.ws16{word-spacing:-11.466667pt;}
.ws5{word-spacing:-10.949333pt;}
.ws0{word-spacing:-10.933333pt;}
.ws2{word-spacing:-10.666667pt;}
.wsb{word-spacing:-10.325333pt;}
.ws8{word-spacing:-9.866667pt;}
.ws9{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.000000pt;}
.ws14{word-spacing:-7.466667pt;}
.wsa{word-spacing:0.000000pt;}
._26{margin-left:-4.330667pt;}
._9{margin-left:-3.408000pt;}
._8{margin-left:-2.058667pt;}
._1{margin-left:-0.938667pt;}
._0{width:1.056000pt;}
._6{width:2.208000pt;}
._7{width:3.333333pt;}
._5{width:4.522667pt;}
._b{width:5.664000pt;}
._a{width:6.672000pt;}
._14{width:7.626667pt;}
._4{width:8.533333pt;}
._c{width:9.493333pt;}
._12{width:10.453333pt;}
._d{width:12.224000pt;}
._27{width:13.338667pt;}
._10{width:15.114667pt;}
._11{width:16.058667pt;}
._15{width:17.002667pt;}
._1e{width:17.952000pt;}
._1d{width:18.864000pt;}
._20{width:20.181333pt;}
._1f{width:21.600000pt;}
._1c{width:24.954667pt;}
._1b{width:26.688000pt;}
._21{width:27.648000pt;}
._3{width:33.333333pt;}
._e{width:40.634667pt;}
._f{width:41.744000pt;}
._18{width:42.725333pt;}
._1a{width:43.994667pt;}
._19{width:45.072000pt;}
._24{width:50.928000pt;}
._25{width:52.272000pt;}
._28{width:61.845333pt;}
._2a{width:62.917333pt;}
._29{width:64.298667pt;}
._16{width:65.200000pt;}
._23{width:72.416000pt;}
._22{width:73.632000pt;}
._2d{width:113.664000pt;}
._2b{width:114.624000pt;}
._2c{width:115.658667pt;}
._2{width:306.688000pt;}
._17{width:1634.474667pt;}
._13{width:1655.808000pt;}
.fs6{font-size:26.666667pt;}
.fsa{font-size:29.866667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:2.666667pt;}
.y110{bottom:4.000000pt;}
.y108{bottom:4.266667pt;}
.y3{bottom:8.520000pt;}
.y4{bottom:18.120000pt;}
.y4e{bottom:18.666667pt;}
.y10f{bottom:22.133333pt;}
.y11a{bottom:22.160000pt;}
.y2{bottom:25.333333pt;}
.y7{bottom:25.633333pt;}
.y4d{bottom:34.666667pt;}
.y6{bottom:37.900000pt;}
.y10e{bottom:40.000000pt;}
.y116{bottom:40.266667pt;}
.y119{bottom:40.293333pt;}
.y55{bottom:41.633333pt;}
.y10a{bottom:49.066667pt;}
.y113{bottom:49.080000pt;}
.y4c{bottom:50.666667pt;}
.y54{bottom:57.633333pt;}
.y10d{bottom:58.133333pt;}
.y118{bottom:58.160000pt;}
.y4b{bottom:66.700000pt;}
.y112{bottom:67.200000pt;}
.y53{bottom:71.766667pt;}
.y10c{bottom:76.000000pt;}
.y11b{bottom:76.293333pt;}
.y115{bottom:76.306667pt;}
.y34{bottom:80.033333pt;}
.y4a{bottom:82.700000pt;}
.ye2{bottom:85.366667pt;}
.y102{bottom:88.300000pt;}
.y11e{bottom:94.133333pt;}
.y10b{bottom:94.173333pt;}
.y49{bottom:96.033333pt;}
.ye1{bottom:102.433333pt;}
.y33{bottom:102.966667pt;}
.y14f{bottom:103.233333pt;}
.y101{bottom:105.366667pt;}
.y178{bottom:106.433333pt;}
.y120{bottom:111.766667pt;}
.y11d{bottom:112.000000pt;}
.y114{bottom:112.040000pt;}
.yb8{bottom:112.566667pt;}
.ye0{bottom:119.500000pt;}
.y32{bottom:120.566667pt;}
.y100{bottom:122.433333pt;}
.y89{bottom:124.300000pt;}
.y14e{bottom:124.833333pt;}
.y13b{bottom:125.366667pt;}
.y177{bottom:128.300000pt;}
.y11f{bottom:128.833333pt;}
.yb7{bottom:129.633333pt;}
.yf4{bottom:132.566667pt;}
.y48{bottom:134.966667pt;}
.ydf{bottom:136.560000pt;}
.y31{bottom:138.160000pt;}
.yff{bottom:139.493333pt;}
.y88{bottom:141.360000pt;}
.y13a{bottom:142.440000pt;}
.yb6{bottom:146.733333pt;}
.y47{bottom:149.366667pt;}
.yf3{bottom:149.666667pt;}
.y176{bottom:149.933333pt;}
.yde{bottom:153.666667pt;}
.yfe{bottom:156.600000pt;}
.y87{bottom:158.466667pt;}
.y11c{bottom:159.000000pt;}
.y139{bottom:159.533333pt;}
.y46{bottom:163.766667pt;}
.yb5{bottom:163.800000pt;}
.yf2{bottom:166.733333pt;}
.y14d{bottom:168.333333pt;}
.ydd{bottom:170.733333pt;}
.y30{bottom:171.266667pt;}
.y175{bottom:171.800000pt;}
.yfd{bottom:173.666667pt;}
.y86{bottom:175.533333pt;}
.y138{bottom:176.600000pt;}
.y45{bottom:178.166667pt;}
.yb4{bottom:180.866667pt;}
.yf1{bottom:183.800000pt;}
.ydc{bottom:187.800000pt;}
.y2f{bottom:188.600000pt;}
.y14c{bottom:190.200000pt;}
.yfc{bottom:190.733333pt;}
.y85{bottom:192.600000pt;}
.y174{bottom:193.400000pt;}
.y137{bottom:193.666667pt;}
.yf0{bottom:200.866667pt;}
.yb3{bottom:201.933333pt;}
.ydb{bottom:204.866667pt;}
.y2e{bottom:205.933333pt;}
.y44{bottom:206.700000pt;}
.yfb{bottom:207.800000pt;}
.y84{bottom:209.666667pt;}
.y136{bottom:210.733333pt;}
.y14b{bottom:211.800000pt;}
.y173{bottom:215.266667pt;}
.yef{bottom:217.933333pt;}
.yda{bottom:221.933333pt;}
.y43{bottom:222.726667pt;}
.y2d{bottom:223.266667pt;}
.yfa{bottom:224.866667pt;}
.y83{bottom:226.733333pt;}
.y135{bottom:227.800000pt;}
.y14a{bottom:233.666667pt;}
.yb2{bottom:235.000000pt;}
.y172{bottom:236.866667pt;}
.y42{bottom:238.740000pt;}
.yd9{bottom:239.000000pt;}
.y2c{bottom:240.600000pt;}
.yf9{bottom:241.933333pt;}
.y82{bottom:243.800000pt;}
.y134{bottom:244.866667pt;}
.yb1{bottom:252.066667pt;}
.y41{bottom:254.740000pt;}
.y149{bottom:255.266667pt;}
.y2b{bottom:257.933333pt;}
.y171{bottom:258.733333pt;}
.yf8{bottom:259.000000pt;}
.yd8{bottom:260.066667pt;}
.y81{bottom:260.866667pt;}
.y133{bottom:261.933333pt;}
.yb0{bottom:269.400000pt;}
.y40{bottom:270.726667pt;}
.y2a{bottom:275.266667pt;}
.yf7{bottom:276.066667pt;}
.y148{bottom:277.133333pt;}
.y80{bottom:277.933333pt;}
.y132{bottom:279.000000pt;}
.y170{bottom:280.333333pt;}
.y117{bottom:285.400000pt;}
.yaf{bottom:286.466667pt;}
.y29{bottom:292.600000pt;}
.yd7{bottom:293.400000pt;}
.y3f{bottom:294.740000pt;}
.y7f{bottom:295.000000pt;}
.y131{bottom:296.106667pt;}
.y147{bottom:298.773333pt;}
.y16f{bottom:302.226667pt;}
.yee{bottom:303.560000pt;}
.yae{bottom:307.560000pt;}
.y28{bottom:309.973333pt;}
.yd6{bottom:310.506667pt;}
.y7e{bottom:312.093333pt;}
.y130{bottom:313.440000pt;}
.y3e{bottom:318.740000pt;}
.y146{bottom:321.973333pt;}
.y16e{bottom:323.826667pt;}
.yed{bottom:324.640000pt;}
.y27{bottom:327.306667pt;}
.yd5{bottom:327.560000pt;}
.y7d{bottom:329.426667pt;}
.y12f{bottom:330.493333pt;}
.y3d{bottom:334.740000pt;}
.yad{bottom:340.626667pt;}
.y26{bottom:344.626667pt;}
.yec{bottom:345.706667pt;}
.y7c{bottom:346.506667pt;}
.y12e{bottom:347.560000pt;}
.y3c{bottom:350.726667pt;}
.y145{bottom:354.506667pt;}
.yac{bottom:357.706667pt;}
.yd4{bottom:361.693333pt;}
.y25{bottom:361.960000pt;}
.y7b{bottom:363.560000pt;}
.y12d{bottom:364.626667pt;}
.y3b{bottom:366.766667pt;}
.y16d{bottom:367.293333pt;}
.yab{bottom:374.773333pt;}
.y111{bottom:376.093333pt;}
.yd3{bottom:378.773333pt;}
.y24{bottom:379.293333pt;}
.y7a{bottom:380.626667pt;}
.y12c{bottom:381.706667pt;}
.y3a{bottom:382.766667pt;}
.y144{bottom:385.960000pt;}
.y16c{bottom:389.173333pt;}
.yaa{bottom:391.840000pt;}
.yd2{bottom:395.840000pt;}
.y23{bottom:396.626667pt;}
.y79{bottom:397.693333pt;}
.y39{bottom:398.766667pt;}
.y12b{bottom:398.773333pt;}
.y143{bottom:401.693333pt;}
.ya9{bottom:408.893333pt;}
.y16b{bottom:410.773333pt;}
.yd1{bottom:412.893333pt;}
.y22{bottom:413.960000pt;}
.y38{bottom:414.766667pt;}
.y78{bottom:414.773333pt;}
.y12a{bottom:415.840000pt;}
.ya8{bottom:425.960000pt;}
.yd0{bottom:429.960000pt;}
.y37{bottom:430.766667pt;}
.y21{bottom:431.293333pt;}
.y77{bottom:431.840000pt;}
.y16a{bottom:432.626667pt;}
.y129{bottom:432.893333pt;}
.ya7{bottom:443.026667pt;}
.y36{bottom:446.766667pt;}
.ycf{bottom:447.066667pt;}
.y20{bottom:448.666667pt;}
.y76{bottom:448.933333pt;}
.y128{bottom:450.000000pt;}
.y169{bottom:454.266667pt;}
.ya6{bottom:460.133333pt;}
.y35{bottom:462.766667pt;}
.yce{bottom:464.133333pt;}
.y142{bottom:464.400000pt;}
.y1f{bottom:466.000000pt;}
.y127{bottom:467.066667pt;}
.y75{bottom:469.466667pt;}
.y168{bottom:476.133333pt;}
.ya5{bottom:477.200000pt;}
.ycd{bottom:481.200000pt;}
.y74{bottom:483.066667pt;}
.y1e{bottom:483.333333pt;}
.y126{bottom:484.133333pt;}
.ya4{bottom:494.533333pt;}
.y141{bottom:495.600000pt;}
.y167{bottom:497.733333pt;}
.ycc{bottom:498.533333pt;}
.y73{bottom:500.133333pt;}
.y1d{bottom:500.666667pt;}
.y125{bottom:501.200000pt;}
.y109{bottom:502.800000pt;}
.ya3{bottom:511.600000pt;}
.ycb{bottom:515.600000pt;}
.y72{bottom:517.200000pt;}
.y1c{bottom:518.000000pt;}
.y124{bottom:518.533333pt;}
.y166{bottom:519.600000pt;}
.y140{bottom:526.800000pt;}
.ya2{bottom:528.666667pt;}
.yca{bottom:532.666667pt;}
.y71{bottom:534.533333pt;}
.y1b{bottom:535.333333pt;}
.y123{bottom:535.600000pt;}
.yeb{bottom:536.666667pt;}
.y165{bottom:541.200000pt;}
.y13f{bottom:542.533333pt;}
.ya1{bottom:549.733333pt;}
.y70{bottom:551.600000pt;}
.y1a{bottom:552.666667pt;}
.y164{bottom:563.066667pt;}
.yc9{bottom:566.800000pt;}
.y6f{bottom:568.666667pt;}
.yea{bottom:569.733333pt;}
.y19{bottom:570.000000pt;}
.yf6{bottom:570.800000pt;}
.y13e{bottom:573.466667pt;}
.ya0{bottom:582.800000pt;}
.yc8{bottom:583.866667pt;}
.y163{bottom:584.666667pt;}
.y6e{bottom:585.733333pt;}
.ye9{bottom:586.800000pt;}
.y18{bottom:587.333333pt;}
.y13d{bottom:589.200000pt;}
.y9f{bottom:599.893333pt;}
.yc7{bottom:600.960000pt;}
.y6d{bottom:602.840000pt;}
.ye8{bottom:603.893333pt;}
.y17{bottom:604.693333pt;}
.y162{bottom:606.560000pt;}
.y107{bottom:611.360000pt;}
.y9e{bottom:616.960000pt;}
.yc6{bottom:618.026667pt;}
.y6c{bottom:619.893333pt;}
.ye7{bottom:620.973333pt;}
.y16{bottom:622.026667pt;}
.y161{bottom:628.173333pt;}
.y9d{bottom:637.506667pt;}
.ye6{bottom:638.026667pt;}
.yc5{bottom:639.093333pt;}
.y15{bottom:639.360000pt;}
.y6b{bottom:640.440000pt;}
.y106{bottom:641.773333pt;}
.y160{bottom:650.026667pt;}
.y9c{bottom:651.093333pt;}
.y6a{bottom:654.026667pt;}
.ye5{bottom:655.106667pt;}
.y14{bottom:656.693333pt;}
.y9b{bottom:668.160000pt;}
.y69{bottom:671.093333pt;}
.y15f{bottom:671.626667pt;}
.yc4{bottom:672.173333pt;}
.y13{bottom:674.026667pt;}
.y105{bottom:675.093333pt;}
.y68{bottom:688.173333pt;}
.y9a{bottom:689.226667pt;}
.y12{bottom:691.373333pt;}
.y104{bottom:692.173333pt;}
.y15e{bottom:693.506667pt;}
.y67{bottom:705.226667pt;}
.yc3{bottom:706.293333pt;}
.y11{bottom:708.706667pt;}
.y103{bottom:709.226667pt;}
.y99{bottom:710.293333pt;}
.y15d{bottom:715.106667pt;}
.y66{bottom:722.293333pt;}
.yc2{bottom:723.626667pt;}
.y10{bottom:726.293333pt;}
.yf5{bottom:727.626667pt;}
.y15c{bottom:736.960000pt;}
.y65{bottom:739.626667pt;}
.yc1{bottom:740.706667pt;}
.y98{bottom:743.626667pt;}
.y64{bottom:756.733333pt;}
.yc0{bottom:757.800000pt;}
.y15b{bottom:758.600000pt;}
.yf{bottom:759.400000pt;}
.y97{bottom:760.733333pt;}
.ye4{bottom:761.800000pt;}
.y63{bottom:773.800000pt;}
.ybf{bottom:774.866667pt;}
.ye{bottom:776.200000pt;}
.y96{bottom:777.800000pt;}
.y15a{bottom:780.466667pt;}
.y62{bottom:790.866667pt;}
.ybe{bottom:791.933333pt;}
.y95{bottom:794.866667pt;}
.y13c{bottom:795.933333pt;}
.y159{bottom:802.066667pt;}
.y61{bottom:807.933333pt;}
.ybd{bottom:809.000000pt;}
.y94{bottom:811.933333pt;}
.yd{bottom:813.000000pt;}
.y158{bottom:823.933333pt;}
.y60{bottom:825.000000pt;}
.ybc{bottom:826.066667pt;}
.y93{bottom:829.000000pt;}
.yc{bottom:830.866667pt;}
.y5f{bottom:842.066667pt;}
.ybb{bottom:843.133333pt;}
.y157{bottom:845.533333pt;}
.y92{bottom:846.066667pt;}
.ye3{bottom:849.533333pt;}
.y5e{bottom:859.133333pt;}
.yba{bottom:860.200000pt;}
.y91{bottom:863.133333pt;}
.y156{bottom:867.400000pt;}
.yb{bottom:875.933333pt;}
.y5d{bottom:876.200000pt;}
.y122{bottom:877.266667pt;}
.y90{bottom:880.200000pt;}
.yb9{bottom:881.266667pt;}
.y155{bottom:889.000000pt;}
.y5c{bottom:893.266667pt;}
.y8f{bottom:897.293333pt;}
.y121{bottom:898.360000pt;}
.ya{bottom:908.506667pt;}
.y5b{bottom:910.360000pt;}
.y154{bottom:910.893333pt;}
.y8e{bottom:914.373333pt;}
.y5a{bottom:927.426667pt;}
.y8d{bottom:931.426667pt;}
.y153{bottom:932.506667pt;}
.y9{bottom:940.760000pt;}
.y59{bottom:944.760000pt;}
.y8c{bottom:948.760000pt;}
.y152{bottom:954.360000pt;}
.y58{bottom:961.840000pt;}
.y8b{bottom:965.840000pt;}
.y8{bottom:970.106667pt;}
.y151{bottom:975.960000pt;}
.y57{bottom:978.893333pt;}
.y8a{bottom:982.893333pt;}
.y150{bottom:997.840000pt;}
.y56{bottom:999.960000pt;}
.y5{bottom:1002.893333pt;}
.y1{bottom:1008.506667pt;}
.y52{bottom:1017.293333pt;}
.y51{bottom:1034.360000pt;}
.y50{bottom:1043.173333pt;}
.h19{height:18.133333pt;}
.h9{height:20.520833pt;}
.h12{height:25.064375pt;}
.h13{height:25.117708pt;}
.hf{height:27.289062pt;}
.h10{height:29.895833pt;}
.ha{height:31.187500pt;}
.h6{height:31.270833pt;}
.hb{height:35.039062pt;}
.hc{height:35.085938pt;}
.hd{height:35.179688pt;}
.h18{height:35.644583pt;}
.h4{height:38.932292pt;}
.h5{height:38.984375pt;}
.h7{height:39.088542pt;}
.h3{height:42.825521pt;}
.h16{height:44.947917pt;}
.h2{height:45.900000pt;}
.h15{height:53.203125pt;}
.h17{height:53.750000pt;}
.h11{height:55.520833pt;}
.h14{height:65.781915pt;}
.h8{height:70.078125pt;}
.h1c{height:90.166667pt;}
.h1a{height:108.033333pt;}
.h1d{height:125.866667pt;}
.h1b{height:125.900000pt;}
.he{height:476.106667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:112.600000pt;}
.w7{width:141.666667pt;}
.w6{width:160.866667pt;}
.w3{width:302.200000pt;}
.w2{width:331.066667pt;}
.w8{width:558.040000pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:7.733333pt;}
.x13{left:8.800000pt;}
.x1a{left:11.200000pt;}
.x18{left:14.933333pt;}
.x1c{left:16.300000pt;}
.x12{left:19.733333pt;}
.x1d{left:21.100000pt;}
.x15{left:22.133333pt;}
.x11{left:23.233333pt;}
.xe{left:24.300000pt;}
.x1e{left:34.933333pt;}
.x22{left:37.100000pt;}
.x14{left:38.933333pt;}
.x23{left:43.466667pt;}
.x1{left:48.000000pt;}
.x7{left:72.566667pt;}
.x26{left:76.566655pt;}
.x9{left:79.766655pt;}
.x21{left:111.773333pt;}
.x25{left:135.506667pt;}
.x20{left:139.226667pt;}
.x1b{left:149.626667pt;}
.x3{left:151.226667pt;}
.xd{left:159.239988pt;}
.x16{left:186.466667pt;}
.xf{left:189.666667pt;}
.x10{left:212.066667pt;}
.x5{left:221.933322pt;}
.x6{left:222.999988pt;}
.x24{left:242.733333pt;}
.xb{left:245.933322pt;}
.xc{left:250.199988pt;}
.x17{left:255.266667pt;}
.x19{left:258.200000pt;}
.x2{left:379.066667pt;}
.x8{left:384.666655pt;}
.xa{left:557.506655pt;}
.x4{left:681.266667pt;}
}




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