
    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_406876f940b432db9ed1a177.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_fa5acfdebb62be2a3e584506.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_6c76242037b4d887f9424115.woff')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_5f3263497facddeea9ddf088.woff')format("woff");}.ff4{font-family:ff4;line-height:1.022461;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_98da1b3ccb690b1278b8ba65.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_09f690156a686373725e4277.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_56c3563acb2d5adb48bbe7ec.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_b31bf0243621c2853e847f93.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d1ea015cc0de686a95fa0acb.woff')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_01c9ef11210317c63f7f0c55.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.660000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls13{letter-spacing:-1.320000px;}
.ls1b{letter-spacing:-1.296000px;}
.ls14{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.384000px;}
.ls1a{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.114000px;}
.lsb{letter-spacing:-0.012000px;}
.ls9{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.396000px;}
.ls11{letter-spacing:0.420000px;}
.ls17{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.660000px;}
.ls18{letter-spacing:0.780000px;}
.lse{letter-spacing:1.200000px;}
.lsd{letter-spacing:1.320000px;}
.ls16{letter-spacing:1.800000px;}
.lsc{letter-spacing:6.600000px;}
.ls7{letter-spacing:10.800000px;}
.ls8{letter-spacing:45.900000px;}
.ls1e{letter-spacing:47.700000px;}
.ls2{letter-spacing:54.900000px;}
.ls5{letter-spacing:55.140000px;}
.ls4{letter-spacing:55.380000px;}
.ls0{letter-spacing:56.400000px;}
.ls1c{letter-spacing:74.520000px;}
.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;}
}
.ws8{word-spacing:-60.000000px;}
.wsa{word-spacing:-15.420000px;}
.ws9{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.060000px;}
.ws3{word-spacing:-15.000000px;}
.ws12{word-spacing:-14.100000px;}
.wsd{word-spacing:-14.040000px;}
.wsc{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.386000px;}
.ws11{word-spacing:-13.200000px;}
.ws0{word-spacing:-12.300000px;}
.ws10{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.616000px;}
.ws5{word-spacing:-10.500000px;}
.ws4{word-spacing:-9.000000px;}
.wse{word-spacing:-8.400000px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-3.564000px;}
._9{margin-left:-2.058000px;}
._1{margin-left:-1.056000px;}
._0{width:1.188000px;}
._7{width:2.232000px;}
._6{width:3.456000px;}
._8{width:4.836000px;}
._a{width:6.246000px;}
._b{width:7.650000px;}
._15{width:8.976000px;}
._14{width:10.338000px;}
._c{width:11.370000px;}
._d{width:12.780000px;}
._17{width:16.710000px;}
._f{width:17.892000px;}
._e{width:19.176000px;}
._3{width:22.356000px;}
._1b{width:24.780000px;}
._5{width:26.400000px;}
._10{width:28.278000px;}
._22{width:30.828000px;}
._4{width:37.500000px;}
._12{width:45.150000px;}
._11{width:46.644000px;}
._19{width:47.808000px;}
._1f{width:54.300000px;}
._1d{width:55.782000px;}
._1e{width:56.808000px;}
._21{width:59.874000px;}
._20{width:61.632000px;}
._18{width:73.350000px;}
._24{width:91.746000px;}
._23{width:93.636000px;}
._1a{width:117.666000px;}
._2{width:345.024000px;}
._1c{width:1838.268000px;}
._13{width:1862.268000px;}
.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;}
.y4c{bottom:3.000000px;}
.yfe{bottom:3.885000px;}
.yab{bottom:3.900000px;}
.y108{bottom:3.915000px;}
.ya4{bottom:4.185000px;}
.yee{bottom:4.200000px;}
.y3{bottom:9.585000px;}
.ya8{bottom:13.500000px;}
.y10b{bottom:13.515000px;}
.yb0{bottom:13.800000px;}
.yc1{bottom:13.830000px;}
.y4{bottom:20.385000px;}
.y4b{bottom:21.007500px;}
.yaa{bottom:23.400000px;}
.y107{bottom:23.415000px;}
.ybe{bottom:23.430000px;}
.y102{bottom:23.445000px;}
.yad{bottom:27.600000px;}
.ya6{bottom:27.615000px;}
.y105{bottom:27.645000px;}
.y2{bottom:28.500000px;}
.y7{bottom:28.837500px;}
.ya7{bottom:33.000000px;}
.y10a{bottom:33.015000px;}
.y106{bottom:33.045000px;}
.yaf{bottom:33.300000px;}
.yb6{bottom:33.315000px;}
.yc0{bottom:33.330000px;}
.y100{bottom:37.530000px;}
.ybc{bottom:37.545000px;}
.y4a{bottom:39.037500px;}
.y6{bottom:42.637500px;}
.yfd{bottom:42.885000px;}
.yb1{bottom:42.900000px;}
.ya9{bottom:42.915000px;}
.yae{bottom:42.930000px;}
.y101{bottom:42.945000px;}
.y51{bottom:46.837500px;}
.y10c{bottom:47.100000px;}
.yf9{bottom:52.500000px;}
.yf2{bottom:52.800000px;}
.ybf{bottom:52.830000px;}
.yb5{bottom:52.845000px;}
.yf7{bottom:56.685000px;}
.yf0{bottom:57.000000px;}
.y49{bottom:57.037500px;}
.yb3{bottom:57.045000px;}
.yfc{bottom:62.385000px;}
.yf5{bottom:62.400000px;}
.ybd{bottom:62.430000px;}
.yb9{bottom:62.445000px;}
.y50{bottom:62.737500px;}
.yf8{bottom:72.000000px;}
.yf1{bottom:72.300000px;}
.y10d{bottom:72.330000px;}
.yb4{bottom:72.345000px;}
.y48{bottom:75.037500px;}
.yfb{bottom:81.885000px;}
.yf4{bottom:81.900000px;}
.yb8{bottom:81.945000px;}
.y47{bottom:93.037500px;}
.y85{bottom:94.837500px;}
.ya1{bottom:96.037500px;}
.y32{bottom:98.437500px;}
.y13c{bottom:101.137500px;}
.yf3{bottom:101.400000px;}
.yfa{bottom:101.430000px;}
.yb7{bottom:101.445000px;}
.y114{bottom:105.037500px;}
.y46{bottom:108.337500px;}
.y84{bottom:114.037500px;}
.ya0{bottom:115.237500px;}
.y31{bottom:117.637500px;}
.y164{bottom:120.637500px;}
.y83{bottom:133.237500px;}
.y9f{bottom:134.437500px;}
.y13b{bottom:136.537500px;}
.y30{bottom:136.837500px;}
.y33{bottom:139.237500px;}
.y113{bottom:142.537500px;}
.y93{bottom:143.137500px;}
.y163{bottom:144.937500px;}
.yc4{bottom:148.837500px;}
.y45{bottom:151.837500px;}
.y82{bottom:152.430000px;}
.y9e{bottom:153.630000px;}
.y13a{bottom:154.245000px;}
.y2f{bottom:156.045000px;}
.yea{bottom:157.245000px;}
.y112{bottom:161.730000px;}
.y44{bottom:168.037500px;}
.y162{bottom:169.575000px;}
.y81{bottom:171.675000px;}
.y9d{bottom:172.875000px;}
.y2e{bottom:175.275000px;}
.ye9{bottom:176.475000px;}
.y111{bottom:180.975000px;}
.y43{bottom:184.237500px;}
.y139{bottom:189.375000px;}
.y80{bottom:190.875000px;}
.y9c{bottom:192.375000px;}
.y161{bottom:193.875000px;}
.y2d{bottom:194.475000px;}
.ye8{bottom:195.675000px;}
.y110{bottom:200.175000px;}
.y42{bottom:200.767500px;}
.y7f{bottom:210.075000px;}
.y9b{bottom:211.575000px;}
.y2c{bottom:213.675000px;}
.ye7{bottom:214.875000px;}
.y189{bottom:217.575000px;}
.y160{bottom:218.475000px;}
.y10f{bottom:223.875000px;}
.y138{bottom:224.775000px;}
.y7e{bottom:229.275000px;}
.y9a{bottom:230.775000px;}
.y2b{bottom:232.875000px;}
.y41{bottom:232.882500px;}
.ye6{bottom:234.075000px;}
.y188{bottom:242.175000px;}
.y15f{bottom:242.775000px;}
.y10e{bottom:247.575000px;}
.y7d{bottom:248.475000px;}
.y99{bottom:249.975000px;}
.y40{bottom:250.882500px;}
.y2a{bottom:252.375000px;}
.ye5{bottom:253.575000px;}
.y137{bottom:260.175000px;}
.y187{bottom:266.475000px;}
.y15e{bottom:267.375000px;}
.y7c{bottom:267.675000px;}
.y3f{bottom:268.882500px;}
.y29{bottom:271.575000px;}
.ye4{bottom:272.775000px;}
.y98{bottom:273.675000px;}
.y7b{bottom:286.875000px;}
.y3e{bottom:286.882500px;}
.y28{bottom:290.775000px;}
.y186{bottom:291.075000px;}
.y15d{bottom:291.675000px;}
.ye3{bottom:291.975000px;}
.y136{bottom:294.975000px;}
.y3d{bottom:304.867500px;}
.y7a{bottom:306.075000px;}
.y27{bottom:309.975000px;}
.y97{bottom:310.875000px;}
.ye2{bottom:311.175000px;}
.y135{bottom:312.675000px;}
.y185{bottom:315.375000px;}
.y15c{bottom:316.275000px;}
.y79{bottom:325.575000px;}
.y26{bottom:329.175000px;}
.y96{bottom:330.075000px;}
.ye1{bottom:330.375000px;}
.y3c{bottom:331.867500px;}
.y184{bottom:340.005000px;}
.y15b{bottom:340.605000px;}
.y78{bottom:344.805000px;}
.y134{bottom:347.805000px;}
.y25{bottom:348.420000px;}
.y95{bottom:349.320000px;}
.ye0{bottom:349.620000px;}
.y3b{bottom:358.867500px;}
.y77{bottom:364.005000px;}
.y183{bottom:364.305000px;}
.y133{bottom:365.220000px;}
.y109{bottom:366.105000px;}
.y24{bottom:367.605000px;}
.ydf{bottom:368.820000px;}
.y3a{bottom:376.912500px;}
.y132{bottom:382.320000px;}
.y76{bottom:383.205000px;}
.y94{bottom:386.205000px;}
.y23{bottom:386.820000px;}
.yde{bottom:388.005000px;}
.y182{bottom:388.920000px;}
.y15a{bottom:389.505000px;}
.y39{bottom:394.912500px;}
.y131{bottom:399.705000px;}
.y75{bottom:402.420000px;}
.y22{bottom:406.005000px;}
.ydd{bottom:411.705000px;}
.y38{bottom:412.912500px;}
.y181{bottom:413.205000px;}
.y159{bottom:414.120000px;}
.y130{bottom:417.105000px;}
.y74{bottom:421.620000px;}
.y21{bottom:425.205000px;}
.y37{bottom:430.912500px;}
.y12f{bottom:434.505000px;}
.ydc{bottom:435.405000px;}
.y180{bottom:437.820000px;}
.y158{bottom:438.405000px;}
.y73{bottom:440.820000px;}
.y20{bottom:444.420000px;}
.y36{bottom:448.912500px;}
.y17f{bottom:462.120000px;}
.y157{bottom:463.005000px;}
.y72{bottom:464.505000px;}
.y35{bottom:466.912500px;}
.y1f{bottom:468.120000px;}
.y12e{bottom:470.205000px;}
.ydb{bottom:472.605000px;}
.y104{bottom:484.605000px;}
.y34{bottom:484.912500px;}
.y17e{bottom:486.705000px;}
.y156{bottom:487.320000px;}
.y71{bottom:488.205000px;}
.yda{bottom:491.820000px;}
.y92{bottom:506.250000px;}
.y12d{bottom:507.450000px;}
.y17d{bottom:511.050000px;}
.yd9{bottom:511.350000px;}
.y155{bottom:511.950000px;}
.y70{bottom:525.450000px;}
.y1e{bottom:526.350000px;}
.y12c{bottom:526.650000px;}
.yd8{bottom:530.550000px;}
.y17c{bottom:535.650000px;}
.y154{bottom:536.250000px;}
.yc3{bottom:538.950000px;}
.y103{bottom:543.750000px;}
.y6f{bottom:544.650000px;}
.y12b{bottom:545.850000px;}
.y1d{bottom:546.150000px;}
.yd7{bottom:549.750000px;}
.y17b{bottom:559.950000px;}
.y153{bottom:560.850000px;}
.y6e{bottom:563.850000px;}
.y12a{bottom:565.350000px;}
.y1c{bottom:565.950000px;}
.yd6{bottom:573.450000px;}
.y6d{bottom:583.350000px;}
.y129{bottom:584.550000px;}
.y152{bottom:585.150000px;}
.yc2{bottom:598.350000px;}
.y6c{bottom:602.550000px;}
.y1b{bottom:603.150000px;}
.y128{bottom:603.750000px;}
.y17a{bottom:608.850000px;}
.y151{bottom:609.750000px;}
.yd5{bottom:610.650000px;}
.y6b{bottom:621.750000px;}
.y1a{bottom:622.650000px;}
.y127{bottom:622.950000px;}
.yd4{bottom:629.850000px;}
.y179{bottom:633.450000px;}
.y150{bottom:634.050000px;}
.y6a{bottom:640.950000px;}
.y19{bottom:642.150000px;}
.yd3{bottom:649.050000px;}
.ybb{bottom:657.450000px;}
.y178{bottom:657.750000px;}
.y14f{bottom:658.650000px;}
.y69{bottom:660.150000px;}
.y126{bottom:661.350000px;}
.y18{bottom:661.650000px;}
.yff{bottom:662.250000px;}
.y91{bottom:664.650000px;}
.yd2{bottom:668.250000px;}
.y68{bottom:679.380000px;}
.y125{bottom:680.580000px;}
.y17{bottom:681.180000px;}
.y177{bottom:682.380000px;}
.y14e{bottom:682.995000px;}
.yd1{bottom:687.480000px;}
.y67{bottom:698.595000px;}
.y124{bottom:699.780000px;}
.y16{bottom:700.695000px;}
.y90{bottom:701.880000px;}
.y176{bottom:706.695000px;}
.y14d{bottom:707.580000px;}
.yd0{bottom:711.180000px;}
.y66{bottom:717.780000px;}
.y123{bottom:718.980000px;}
.y15{bottom:720.195000px;}
.y8f{bottom:721.080000px;}
.y175{bottom:731.280000px;}
.y14c{bottom:731.880000px;}
.yba{bottom:736.380000px;}
.y65{bottom:736.995000px;}
.y14{bottom:739.695000px;}
.y8e{bottom:740.280000px;}
.yf6{bottom:741.195000px;}
.y122{bottom:742.695000px;}
.ycf{bottom:748.380000px;}
.y174{bottom:755.580000px;}
.y64{bottom:756.195000px;}
.y14b{bottom:756.480000px;}
.y13{bottom:759.195000px;}
.y8d{bottom:759.480000px;}
.yce{bottom:767.595000px;}
.y63{bottom:775.380000px;}
.y12{bottom:778.695000px;}
.y121{bottom:779.880000px;}
.y173{bottom:780.195000px;}
.y14a{bottom:780.780000px;}
.ycd{bottom:787.080000px;}
.y62{bottom:794.580000px;}
.yb2{bottom:795.480000px;}
.y8c{bottom:797.880000px;}
.y11{bottom:798.195000px;}
.y120{bottom:799.080000px;}
.y172{bottom:804.495000px;}
.y149{bottom:805.380000px;}
.ycc{bottom:806.280000px;}
.y61{bottom:814.080000px;}
.y8b{bottom:817.080000px;}
.y10{bottom:817.695000px;}
.y11f{bottom:818.580000px;}
.y171{bottom:829.080000px;}
.y148{bottom:829.695000px;}
.ycb{bottom:829.995000px;}
.y60{bottom:833.295000px;}
.y8a{bottom:836.580000px;}
.yf{bottom:837.480000px;}
.y11e{bottom:837.795000px;}
.y5f{bottom:852.525000px;}
.y170{bottom:853.425000px;}
.y147{bottom:854.325000px;}
.y89{bottom:855.825000px;}
.y11d{bottom:857.025000px;}
.yef{bottom:858.825000px;}
.yca{bottom:867.225000px;}
.ye{bottom:874.725000px;}
.y88{bottom:875.025000px;}
.y5e{bottom:876.225000px;}
.y16f{bottom:878.025000px;}
.y146{bottom:878.625000px;}
.yc9{bottom:886.425000px;}
.yd{bottom:893.625000px;}
.y87{bottom:894.225000px;}
.y11c{bottom:895.425000px;}
.y16e{bottom:902.325000px;}
.y145{bottom:903.225000px;}
.yc8{bottom:905.625000px;}
.y5d{bottom:913.425000px;}
.y11b{bottom:914.625000px;}
.yc7{bottom:924.825000px;}
.y16d{bottom:926.925000px;}
.y144{bottom:927.525000px;}
.y5c{bottom:932.625000px;}
.y11a{bottom:933.825000px;}
.yc{bottom:934.725000px;}
.yc6{bottom:948.525000px;}
.y16c{bottom:951.225000px;}
.y5b{bottom:951.825000px;}
.y143{bottom:952.125000px;}
.y119{bottom:953.025000px;}
.y5a{bottom:971.025000px;}
.yc5{bottom:972.225000px;}
.yac{bottom:972.525000px;}
.y16b{bottom:975.825000px;}
.y142{bottom:976.425000px;}
.yed{bottom:976.725000px;}
.yb{bottom:985.425000px;}
.y59{bottom:990.225000px;}
.y118{bottom:991.425000px;}
.y16a{bottom:1000.125000px;}
.y141{bottom:1001.025000px;}
.y58{bottom:1009.455000px;}
.yec{bottom:1009.755000px;}
.y117{bottom:1010.655000px;}
.ya{bottom:1022.070000px;}
.y169{bottom:1024.755000px;}
.y140{bottom:1025.370000px;}
.y57{bottom:1028.670000px;}
.yeb{bottom:1029.570000px;}
.ya5{bottom:1031.955000px;}
.y56{bottom:1047.855000px;}
.y168{bottom:1049.070000px;}
.y13f{bottom:1049.955000px;}
.y116{bottom:1051.755000px;}
.y9{bottom:1058.355000px;}
.y55{bottom:1067.355000px;}
.y86{bottom:1071.255000px;}
.y167{bottom:1073.655000px;}
.y13e{bottom:1074.255000px;}
.y54{bottom:1086.570000px;}
.ya3{bottom:1091.070000px;}
.y8{bottom:1091.370000px;}
.y166{bottom:1097.955000px;}
.y13d{bottom:1098.870000px;}
.y53{bottom:1105.755000px;}
.y115{bottom:1109.655000px;}
.y165{bottom:1122.570000px;}
.ya2{bottom:1124.655000px;}
.y52{bottom:1124.955000px;}
.y5{bottom:1128.255000px;}
.y1{bottom:1134.570000px;}
.y4f{bottom:1144.455000px;}
.y4e{bottom:1163.655000px;}
.y4d{bottom:1173.570000px;}
.h17{height:19.500000px;}
.h9{height:23.085938px;}
.h19{height:24.740625px;}
.h15{height:28.257422px;}
.h11{height:30.700195px;}
.h10{height:30.925781px;}
.h12{height:33.632812px;}
.h13{height:35.085938px;}
.h6{height:35.179688px;}
.ha{height:35.343750px;}
.hc{height:39.471680px;}
.hd{height:39.577148px;}
.hb{height:39.761719px;}
.h5{height:43.857422px;}
.h7{height:43.974609px;}
.h4{height:44.179688px;}
.h3{height:48.597656px;}
.h2{height:51.637500px;}
.h16{height:52.628906px;}
.h18{height:58.500000px;}
.h1a{height:58.537500px;}
.h14{height:59.853516px;}
.h1f{height:61.670545px;}
.he{height:62.460938px;}
.h1c{height:78.037500px;}
.h8{height:79.523438px;}
.h1e{height:97.537500px;}
.h1d{height:117.000000px;}
.h1b{height:117.037500px;}
.hf{height:499.920000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wb{width:41.437500px;}
.w7{width:44.137500px;}
.w4{width:126.675000px;}
.w6{width:180.975000px;}
.wc{width:210.975000px;}
.w8{width:221.775000px;}
.w9{width:255.375000px;}
.wd{width:261.375000px;}
.wa{width:261.975000px;}
.we{width:267.975000px;}
.w3{width:339.975000px;}
.w2{width:372.450000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.800000px;}
.xe{left:9.637500px;}
.x1c{left:11.400000px;}
.x24{left:12.900000px;}
.x1f{left:14.100000px;}
.x25{left:15.315000px;}
.x21{left:16.500000px;}
.x15{left:17.737500px;}
.x16{left:19.800000px;}
.x1a{left:21.615000px;}
.x34{left:24.000000px;}
.x1b{left:25.815000px;}
.x38{left:28.500000px;}
.x37{left:31.800000px;}
.x2c{left:36.615000px;}
.x23{left:39.000000px;}
.x29{left:42.915000px;}
.x1d{left:51.000000px;}
.x28{left:52.200000px;}
.x1{left:54.000000px;}
.x30{left:55.207500px;}
.x2b{left:56.415000px;}
.x12{left:58.200000px;}
.x10{left:60.592500px;}
.x2a{left:63.900000px;}
.x2d{left:68.137487px;}
.x3a{left:71.400000px;}
.x27{left:74.092500px;}
.xc{left:76.837487px;}
.x20{left:79.215000px;}
.x36{left:80.415000px;}
.xa{left:81.637500px;}
.x17{left:83.737500px;}
.x3b{left:86.137487px;}
.x14{left:89.745000px;}
.x33{left:92.745000px;}
.x2f{left:95.437500px;}
.x18{left:96.585000px;}
.xf{left:98.137500px;}
.x1e{left:104.430000px;}
.x22{left:108.930000px;}
.x35{left:113.730000px;}
.x39{left:115.830000px;}
.x26{left:118.545000px;}
.x3{left:170.130000px;}
.xd{left:208.874987px;}
.x5{left:249.674987px;}
.x6{left:250.874987px;}
.x7{left:276.674987px;}
.x9{left:281.474987px;}
.x8{left:282.674987px;}
.x31{left:306.420000px;}
.x11{left:319.920000px;}
.x2e{left:404.819987px;}
.x2{left:426.450000px;}
.x32{left:567.780000px;}
.x13{left:575.280000px;}
.xb{left:620.879987px;}
.x4{left:766.425000px;}
@media print{
.v3{vertical-align:-13.920000pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls13{letter-spacing:-1.173333pt;}
.ls1b{letter-spacing:-1.152000pt;}
.ls14{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.341333pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.101333pt;}
.lsb{letter-spacing:-0.010667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.352000pt;}
.ls11{letter-spacing:0.373333pt;}
.ls17{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.586667pt;}
.ls18{letter-spacing:0.693333pt;}
.lse{letter-spacing:1.066667pt;}
.lsd{letter-spacing:1.173333pt;}
.ls16{letter-spacing:1.600000pt;}
.lsc{letter-spacing:5.866667pt;}
.ls7{letter-spacing:9.600000pt;}
.ls8{letter-spacing:40.800000pt;}
.ls1e{letter-spacing:42.400000pt;}
.ls2{letter-spacing:48.800000pt;}
.ls5{letter-spacing:49.013333pt;}
.ls4{letter-spacing:49.226667pt;}
.ls0{letter-spacing:50.133333pt;}
.ls1c{letter-spacing:66.240000pt;}
.ws8{word-spacing:-53.333333pt;}
.wsa{word-spacing:-13.706667pt;}
.ws9{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.386667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws12{word-spacing:-12.533333pt;}
.wsd{word-spacing:-12.480000pt;}
.wsc{word-spacing:-12.160000pt;}
.ws2{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.898667pt;}
.ws11{word-spacing:-11.733333pt;}
.ws0{word-spacing:-10.933333pt;}
.ws10{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.325333pt;}
.ws5{word-spacing:-9.333333pt;}
.ws4{word-spacing:-8.000000pt;}
.wse{word-spacing:-7.466667pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-3.168000pt;}
._9{margin-left:-1.829333pt;}
._1{margin-left:-0.938667pt;}
._0{width:1.056000pt;}
._7{width:1.984000pt;}
._6{width:3.072000pt;}
._8{width:4.298667pt;}
._a{width:5.552000pt;}
._b{width:6.800000pt;}
._15{width:7.978667pt;}
._14{width:9.189333pt;}
._c{width:10.106667pt;}
._d{width:11.360000pt;}
._17{width:14.853333pt;}
._f{width:15.904000pt;}
._e{width:17.045333pt;}
._3{width:19.872000pt;}
._1b{width:22.026667pt;}
._5{width:23.466667pt;}
._10{width:25.136000pt;}
._22{width:27.402667pt;}
._4{width:33.333333pt;}
._12{width:40.133333pt;}
._11{width:41.461333pt;}
._19{width:42.496000pt;}
._1f{width:48.266667pt;}
._1d{width:49.584000pt;}
._1e{width:50.496000pt;}
._21{width:53.221333pt;}
._20{width:54.784000pt;}
._18{width:65.200000pt;}
._24{width:81.552000pt;}
._23{width:83.232000pt;}
._1a{width:104.592000pt;}
._2{width:306.688000pt;}
._1c{width:1634.016000pt;}
._13{width:1655.349333pt;}
.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;}
.y4c{bottom:2.666667pt;}
.yfe{bottom:3.453333pt;}
.yab{bottom:3.466667pt;}
.y108{bottom:3.480000pt;}
.ya4{bottom:3.720000pt;}
.yee{bottom:3.733333pt;}
.y3{bottom:8.520000pt;}
.ya8{bottom:12.000000pt;}
.y10b{bottom:12.013333pt;}
.yb0{bottom:12.266667pt;}
.yc1{bottom:12.293333pt;}
.y4{bottom:18.120000pt;}
.y4b{bottom:18.673333pt;}
.yaa{bottom:20.800000pt;}
.y107{bottom:20.813333pt;}
.ybe{bottom:20.826667pt;}
.y102{bottom:20.840000pt;}
.yad{bottom:24.533333pt;}
.ya6{bottom:24.546667pt;}
.y105{bottom:24.573333pt;}
.y2{bottom:25.333333pt;}
.y7{bottom:25.633333pt;}
.ya7{bottom:29.333333pt;}
.y10a{bottom:29.346667pt;}
.y106{bottom:29.373333pt;}
.yaf{bottom:29.600000pt;}
.yb6{bottom:29.613333pt;}
.yc0{bottom:29.626667pt;}
.y100{bottom:33.360000pt;}
.ybc{bottom:33.373333pt;}
.y4a{bottom:34.700000pt;}
.y6{bottom:37.900000pt;}
.yfd{bottom:38.120000pt;}
.yb1{bottom:38.133333pt;}
.ya9{bottom:38.146667pt;}
.yae{bottom:38.160000pt;}
.y101{bottom:38.173333pt;}
.y51{bottom:41.633333pt;}
.y10c{bottom:41.866667pt;}
.yf9{bottom:46.666667pt;}
.yf2{bottom:46.933333pt;}
.ybf{bottom:46.960000pt;}
.yb5{bottom:46.973333pt;}
.yf7{bottom:50.386667pt;}
.yf0{bottom:50.666667pt;}
.y49{bottom:50.700000pt;}
.yb3{bottom:50.706667pt;}
.yfc{bottom:55.453333pt;}
.yf5{bottom:55.466667pt;}
.ybd{bottom:55.493333pt;}
.yb9{bottom:55.506667pt;}
.y50{bottom:55.766667pt;}
.yf8{bottom:64.000000pt;}
.yf1{bottom:64.266667pt;}
.y10d{bottom:64.293333pt;}
.yb4{bottom:64.306667pt;}
.y48{bottom:66.700000pt;}
.yfb{bottom:72.786667pt;}
.yf4{bottom:72.800000pt;}
.yb8{bottom:72.840000pt;}
.y47{bottom:82.700000pt;}
.y85{bottom:84.300000pt;}
.ya1{bottom:85.366667pt;}
.y32{bottom:87.500000pt;}
.y13c{bottom:89.900000pt;}
.yf3{bottom:90.133333pt;}
.yfa{bottom:90.160000pt;}
.yb7{bottom:90.173333pt;}
.y114{bottom:93.366667pt;}
.y46{bottom:96.300000pt;}
.y84{bottom:101.366667pt;}
.ya0{bottom:102.433333pt;}
.y31{bottom:104.566667pt;}
.y164{bottom:107.233333pt;}
.y83{bottom:118.433333pt;}
.y9f{bottom:119.500000pt;}
.y13b{bottom:121.366667pt;}
.y30{bottom:121.633333pt;}
.y33{bottom:123.766667pt;}
.y113{bottom:126.700000pt;}
.y93{bottom:127.233333pt;}
.y163{bottom:128.833333pt;}
.yc4{bottom:132.300000pt;}
.y45{bottom:134.966667pt;}
.y82{bottom:135.493333pt;}
.y9e{bottom:136.560000pt;}
.y13a{bottom:137.106667pt;}
.y2f{bottom:138.706667pt;}
.yea{bottom:139.773333pt;}
.y112{bottom:143.760000pt;}
.y44{bottom:149.366667pt;}
.y162{bottom:150.733333pt;}
.y81{bottom:152.600000pt;}
.y9d{bottom:153.666667pt;}
.y2e{bottom:155.800000pt;}
.ye9{bottom:156.866667pt;}
.y111{bottom:160.866667pt;}
.y43{bottom:163.766667pt;}
.y139{bottom:168.333333pt;}
.y80{bottom:169.666667pt;}
.y9c{bottom:171.000000pt;}
.y161{bottom:172.333333pt;}
.y2d{bottom:172.866667pt;}
.ye8{bottom:173.933333pt;}
.y110{bottom:177.933333pt;}
.y42{bottom:178.460000pt;}
.y7f{bottom:186.733333pt;}
.y9b{bottom:188.066667pt;}
.y2c{bottom:189.933333pt;}
.ye7{bottom:191.000000pt;}
.y189{bottom:193.400000pt;}
.y160{bottom:194.200000pt;}
.y10f{bottom:199.000000pt;}
.y138{bottom:199.800000pt;}
.y7e{bottom:203.800000pt;}
.y9a{bottom:205.133333pt;}
.y2b{bottom:207.000000pt;}
.y41{bottom:207.006667pt;}
.ye6{bottom:208.066667pt;}
.y188{bottom:215.266667pt;}
.y15f{bottom:215.800000pt;}
.y10e{bottom:220.066667pt;}
.y7d{bottom:220.866667pt;}
.y99{bottom:222.200000pt;}
.y40{bottom:223.006667pt;}
.y2a{bottom:224.333333pt;}
.ye5{bottom:225.400000pt;}
.y137{bottom:231.266667pt;}
.y187{bottom:236.866667pt;}
.y15e{bottom:237.666667pt;}
.y7c{bottom:237.933333pt;}
.y3f{bottom:239.006667pt;}
.y29{bottom:241.400000pt;}
.ye4{bottom:242.466667pt;}
.y98{bottom:243.266667pt;}
.y7b{bottom:255.000000pt;}
.y3e{bottom:255.006667pt;}
.y28{bottom:258.466667pt;}
.y186{bottom:258.733333pt;}
.y15d{bottom:259.266667pt;}
.ye3{bottom:259.533333pt;}
.y136{bottom:262.200000pt;}
.y3d{bottom:270.993333pt;}
.y7a{bottom:272.066667pt;}
.y27{bottom:275.533333pt;}
.y97{bottom:276.333333pt;}
.ye2{bottom:276.600000pt;}
.y135{bottom:277.933333pt;}
.y185{bottom:280.333333pt;}
.y15c{bottom:281.133333pt;}
.y79{bottom:289.400000pt;}
.y26{bottom:292.600000pt;}
.y96{bottom:293.400000pt;}
.ye1{bottom:293.666667pt;}
.y3c{bottom:294.993333pt;}
.y184{bottom:302.226667pt;}
.y15b{bottom:302.760000pt;}
.y78{bottom:306.493333pt;}
.y134{bottom:309.160000pt;}
.y25{bottom:309.706667pt;}
.y95{bottom:310.506667pt;}
.ye0{bottom:310.773333pt;}
.y3b{bottom:318.993333pt;}
.y77{bottom:323.560000pt;}
.y183{bottom:323.826667pt;}
.y133{bottom:324.640000pt;}
.y109{bottom:325.426667pt;}
.y24{bottom:326.760000pt;}
.ydf{bottom:327.840000pt;}
.y3a{bottom:335.033333pt;}
.y132{bottom:339.840000pt;}
.y76{bottom:340.626667pt;}
.y94{bottom:343.293333pt;}
.y23{bottom:343.840000pt;}
.yde{bottom:344.893333pt;}
.y182{bottom:345.706667pt;}
.y15a{bottom:346.226667pt;}
.y39{bottom:351.033333pt;}
.y131{bottom:355.293333pt;}
.y75{bottom:357.706667pt;}
.y22{bottom:360.893333pt;}
.ydd{bottom:365.960000pt;}
.y38{bottom:367.033333pt;}
.y181{bottom:367.293333pt;}
.y159{bottom:368.106667pt;}
.y130{bottom:370.760000pt;}
.y74{bottom:374.773333pt;}
.y21{bottom:377.960000pt;}
.y37{bottom:383.033333pt;}
.y12f{bottom:386.226667pt;}
.ydc{bottom:387.026667pt;}
.y180{bottom:389.173333pt;}
.y158{bottom:389.693333pt;}
.y73{bottom:391.840000pt;}
.y20{bottom:395.040000pt;}
.y36{bottom:399.033333pt;}
.y17f{bottom:410.773333pt;}
.y157{bottom:411.560000pt;}
.y72{bottom:412.893333pt;}
.y35{bottom:415.033333pt;}
.y1f{bottom:416.106667pt;}
.y12e{bottom:417.960000pt;}
.ydb{bottom:420.093333pt;}
.y104{bottom:430.760000pt;}
.y34{bottom:431.033333pt;}
.y17e{bottom:432.626667pt;}
.y156{bottom:433.173333pt;}
.y71{bottom:433.960000pt;}
.yda{bottom:437.173333pt;}
.y92{bottom:450.000000pt;}
.y12d{bottom:451.066667pt;}
.y17d{bottom:454.266667pt;}
.yd9{bottom:454.533333pt;}
.y155{bottom:455.066667pt;}
.y70{bottom:467.066667pt;}
.y1e{bottom:467.866667pt;}
.y12c{bottom:468.133333pt;}
.yd8{bottom:471.600000pt;}
.y17c{bottom:476.133333pt;}
.y154{bottom:476.666667pt;}
.yc3{bottom:479.066667pt;}
.y103{bottom:483.333333pt;}
.y6f{bottom:484.133333pt;}
.y12b{bottom:485.200000pt;}
.y1d{bottom:485.466667pt;}
.yd7{bottom:488.666667pt;}
.y17b{bottom:497.733333pt;}
.y153{bottom:498.533333pt;}
.y6e{bottom:501.200000pt;}
.y12a{bottom:502.533333pt;}
.y1c{bottom:503.066667pt;}
.yd6{bottom:509.733333pt;}
.y6d{bottom:518.533333pt;}
.y129{bottom:519.600000pt;}
.y152{bottom:520.133333pt;}
.yc2{bottom:531.866667pt;}
.y6c{bottom:535.600000pt;}
.y1b{bottom:536.133333pt;}
.y128{bottom:536.666667pt;}
.y17a{bottom:541.200000pt;}
.y151{bottom:542.000000pt;}
.yd5{bottom:542.800000pt;}
.y6b{bottom:552.666667pt;}
.y1a{bottom:553.466667pt;}
.y127{bottom:553.733333pt;}
.yd4{bottom:559.866667pt;}
.y179{bottom:563.066667pt;}
.y150{bottom:563.600000pt;}
.y6a{bottom:569.733333pt;}
.y19{bottom:570.800000pt;}
.yd3{bottom:576.933333pt;}
.ybb{bottom:584.400000pt;}
.y178{bottom:584.666667pt;}
.y14f{bottom:585.466667pt;}
.y69{bottom:586.800000pt;}
.y126{bottom:587.866667pt;}
.y18{bottom:588.133333pt;}
.yff{bottom:588.666667pt;}
.y91{bottom:590.800000pt;}
.yd2{bottom:594.000000pt;}
.y68{bottom:603.893333pt;}
.y125{bottom:604.960000pt;}
.y17{bottom:605.493333pt;}
.y177{bottom:606.560000pt;}
.y14e{bottom:607.106667pt;}
.yd1{bottom:611.093333pt;}
.y67{bottom:620.973333pt;}
.y124{bottom:622.026667pt;}
.y16{bottom:622.840000pt;}
.y90{bottom:623.893333pt;}
.y176{bottom:628.173333pt;}
.y14d{bottom:628.960000pt;}
.yd0{bottom:632.160000pt;}
.y66{bottom:638.026667pt;}
.y123{bottom:639.093333pt;}
.y15{bottom:640.173333pt;}
.y8f{bottom:640.960000pt;}
.y175{bottom:650.026667pt;}
.y14c{bottom:650.560000pt;}
.yba{bottom:654.560000pt;}
.y65{bottom:655.106667pt;}
.y14{bottom:657.506667pt;}
.y8e{bottom:658.026667pt;}
.yf6{bottom:658.840000pt;}
.y122{bottom:660.173333pt;}
.ycf{bottom:665.226667pt;}
.y174{bottom:671.626667pt;}
.y64{bottom:672.173333pt;}
.y14b{bottom:672.426667pt;}
.y13{bottom:674.840000pt;}
.y8d{bottom:675.093333pt;}
.yce{bottom:682.306667pt;}
.y63{bottom:689.226667pt;}
.y12{bottom:692.173333pt;}
.y121{bottom:693.226667pt;}
.y173{bottom:693.506667pt;}
.y14a{bottom:694.026667pt;}
.ycd{bottom:699.626667pt;}
.y62{bottom:706.293333pt;}
.yb2{bottom:707.093333pt;}
.y8c{bottom:709.226667pt;}
.y11{bottom:709.506667pt;}
.y120{bottom:710.293333pt;}
.y172{bottom:715.106667pt;}
.y149{bottom:715.893333pt;}
.ycc{bottom:716.693333pt;}
.y61{bottom:723.626667pt;}
.y8b{bottom:726.293333pt;}
.y10{bottom:726.840000pt;}
.y11f{bottom:727.626667pt;}
.y171{bottom:736.960000pt;}
.y148{bottom:737.506667pt;}
.ycb{bottom:737.773333pt;}
.y60{bottom:740.706667pt;}
.y8a{bottom:743.626667pt;}
.yf{bottom:744.426667pt;}
.y11e{bottom:744.706667pt;}
.y5f{bottom:757.800000pt;}
.y170{bottom:758.600000pt;}
.y147{bottom:759.400000pt;}
.y89{bottom:760.733333pt;}
.y11d{bottom:761.800000pt;}
.yef{bottom:763.400000pt;}
.yca{bottom:770.866667pt;}
.ye{bottom:777.533333pt;}
.y88{bottom:777.800000pt;}
.y5e{bottom:778.866667pt;}
.y16f{bottom:780.466667pt;}
.y146{bottom:781.000000pt;}
.yc9{bottom:787.933333pt;}
.yd{bottom:794.333333pt;}
.y87{bottom:794.866667pt;}
.y11c{bottom:795.933333pt;}
.y16e{bottom:802.066667pt;}
.y145{bottom:802.866667pt;}
.yc8{bottom:805.000000pt;}
.y5d{bottom:811.933333pt;}
.y11b{bottom:813.000000pt;}
.yc7{bottom:822.066667pt;}
.y16d{bottom:823.933333pt;}
.y144{bottom:824.466667pt;}
.y5c{bottom:829.000000pt;}
.y11a{bottom:830.066667pt;}
.yc{bottom:830.866667pt;}
.yc6{bottom:843.133333pt;}
.y16c{bottom:845.533333pt;}
.y5b{bottom:846.066667pt;}
.y143{bottom:846.333333pt;}
.y119{bottom:847.133333pt;}
.y5a{bottom:863.133333pt;}
.yc5{bottom:864.200000pt;}
.yac{bottom:864.466667pt;}
.y16b{bottom:867.400000pt;}
.y142{bottom:867.933333pt;}
.yed{bottom:868.200000pt;}
.yb{bottom:875.933333pt;}
.y59{bottom:880.200000pt;}
.y118{bottom:881.266667pt;}
.y16a{bottom:889.000000pt;}
.y141{bottom:889.800000pt;}
.y58{bottom:897.293333pt;}
.yec{bottom:897.560000pt;}
.y117{bottom:898.360000pt;}
.ya{bottom:908.506667pt;}
.y169{bottom:910.893333pt;}
.y140{bottom:911.440000pt;}
.y57{bottom:914.373333pt;}
.yeb{bottom:915.173333pt;}
.ya5{bottom:917.293333pt;}
.y56{bottom:931.426667pt;}
.y168{bottom:932.506667pt;}
.y13f{bottom:933.293333pt;}
.y116{bottom:934.893333pt;}
.y9{bottom:940.760000pt;}
.y55{bottom:948.760000pt;}
.y86{bottom:952.226667pt;}
.y167{bottom:954.360000pt;}
.y13e{bottom:954.893333pt;}
.y54{bottom:965.840000pt;}
.ya3{bottom:969.840000pt;}
.y8{bottom:970.106667pt;}
.y166{bottom:975.960000pt;}
.y13d{bottom:976.773333pt;}
.y53{bottom:982.893333pt;}
.y115{bottom:986.360000pt;}
.y165{bottom:997.840000pt;}
.ya2{bottom:999.693333pt;}
.y52{bottom:999.960000pt;}
.y5{bottom:1002.893333pt;}
.y1{bottom:1008.506667pt;}
.y4f{bottom:1017.293333pt;}
.y4e{bottom:1034.360000pt;}
.y4d{bottom:1043.173333pt;}
.h17{height:17.333333pt;}
.h9{height:20.520833pt;}
.h19{height:21.991667pt;}
.h15{height:25.117708pt;}
.h11{height:27.289062pt;}
.h10{height:27.489583pt;}
.h12{height:29.895833pt;}
.h13{height:31.187500pt;}
.h6{height:31.270833pt;}
.ha{height:31.416667pt;}
.hc{height:35.085938pt;}
.hd{height:35.179688pt;}
.hb{height:35.343750pt;}
.h5{height:38.984375pt;}
.h7{height:39.088542pt;}
.h4{height:39.270833pt;}
.h3{height:43.197917pt;}
.h2{height:45.900000pt;}
.h16{height:46.781250pt;}
.h18{height:52.000000pt;}
.h1a{height:52.033333pt;}
.h14{height:53.203125pt;}
.h1f{height:54.818262pt;}
.he{height:55.520833pt;}
.h1c{height:69.366667pt;}
.h8{height:70.687500pt;}
.h1e{height:86.700000pt;}
.h1d{height:104.000000pt;}
.h1b{height:104.033333pt;}
.hf{height:444.373333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wb{width:36.833333pt;}
.w7{width:39.233333pt;}
.w4{width:112.600000pt;}
.w6{width:160.866667pt;}
.wc{width:187.533333pt;}
.w8{width:197.133333pt;}
.w9{width:227.000000pt;}
.wd{width:232.333333pt;}
.wa{width:232.866667pt;}
.we{width:238.200000pt;}
.w3{width:302.200000pt;}
.w2{width:331.066667pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.933333pt;}
.xe{left:8.566667pt;}
.x1c{left:10.133333pt;}
.x24{left:11.466667pt;}
.x1f{left:12.533333pt;}
.x25{left:13.613333pt;}
.x21{left:14.666667pt;}
.x15{left:15.766667pt;}
.x16{left:17.600000pt;}
.x1a{left:19.213333pt;}
.x34{left:21.333333pt;}
.x1b{left:22.946667pt;}
.x38{left:25.333333pt;}
.x37{left:28.266667pt;}
.x2c{left:32.546667pt;}
.x23{left:34.666667pt;}
.x29{left:38.146667pt;}
.x1d{left:45.333333pt;}
.x28{left:46.400000pt;}
.x1{left:48.000000pt;}
.x30{left:49.073333pt;}
.x2b{left:50.146667pt;}
.x12{left:51.733333pt;}
.x10{left:53.860000pt;}
.x2a{left:56.800000pt;}
.x2d{left:60.566655pt;}
.x3a{left:63.466667pt;}
.x27{left:65.860000pt;}
.xc{left:68.299988pt;}
.x20{left:70.413333pt;}
.x36{left:71.480000pt;}
.xa{left:72.566667pt;}
.x17{left:74.433333pt;}
.x3b{left:76.566655pt;}
.x14{left:79.773333pt;}
.x33{left:82.440000pt;}
.x2f{left:84.833333pt;}
.x18{left:85.853333pt;}
.xf{left:87.233333pt;}
.x1e{left:92.826667pt;}
.x22{left:96.826667pt;}
.x35{left:101.093333pt;}
.x39{left:102.960000pt;}
.x26{left:105.373333pt;}
.x3{left:151.226667pt;}
.xd{left:185.666655pt;}
.x5{left:221.933322pt;}
.x6{left:222.999988pt;}
.x7{left:245.933322pt;}
.x9{left:250.199988pt;}
.x8{left:251.266655pt;}
.x31{left:272.373333pt;}
.x11{left:284.373333pt;}
.x2e{left:359.839988pt;}
.x2{left:379.066667pt;}
.x32{left:504.693333pt;}
.x13{left:511.360000pt;}
.xb{left:551.893322pt;}
.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; }
  