
    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_c8b726026417c0341a32d14c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5df735d61e17992dd9961a4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b54ff2105e0c1908a7f01f26.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_19dc2422588660d164048b10.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.283203;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_47466ec24e8c0bb1a1cfa845.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_273634fbbcbc57981312803b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.774902;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_7af474c313d721bb6e23f325.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945312;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_de5ee53a9759336f466474de.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_146999f79e849701d210f241.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966797;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_219d1d1da92d90a546cb3116.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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:ffd;src:url('chunks/assets/font_2209df74b4aed4f9bb2a3c84.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.747000;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:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.109200px;}
.ls1f{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018720px;}
.ls10{letter-spacing:0.037440px;}
.ls13{letter-spacing:0.071967px;}
.ls12{letter-spacing:0.072013px;}
.ls4{letter-spacing:0.143912px;}
.ls7{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.181436px;}
.ls8{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.287962px;}
.ls6{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.288007px;}
.ls14{letter-spacing:0.288011px;}
.ls9{letter-spacing:0.305251px;}
.ls5{letter-spacing:0.407941px;}
.ls1e{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.757440px;}
.ls1c{letter-spacing:1.340640px;}
.ls15{letter-spacing:1.476000px;}
.ls16{letter-spacing:7.938687px;}
.ls1d{letter-spacing:10.223960px;}
.ls1a{letter-spacing:21.743949px;}
.ls17{letter-spacing:28.224009px;}
.ls18{letter-spacing:55.386720px;}
.lsd{letter-spacing:60.065288px;}
.ls1b{letter-spacing:64.026735px;}
.lsf{letter-spacing:97.481291px;}
.lsa{letter-spacing:844.284018px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws0{word-spacing:-33.426720px;}
.wsc{word-spacing:-28.097280px;}
.ws9{word-spacing:-26.658720px;}
.ws8{word-spacing:-26.640000px;}
.wsd{word-spacing:-26.621280px;}
.wsf{word-spacing:-20.520000px;}
.ws4{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws10{word-spacing:-19.944000px;}
.wsb{word-spacing:-19.800000px;}
.wsa{word-spacing:-19.584000px;}
.ws7{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.305520px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-23.261284px;}
._16{margin-left:-18.914087px;}
._13{margin-left:-16.185822px;}
._14{margin-left:-14.046702px;}
._17{margin-left:-11.735991px;}
._19{margin-left:-7.980064px;}
._18{margin-left:-6.723123px;}
._26{margin-left:-5.492182px;}
._12{margin-left:-4.345920px;}
._d{margin-left:-2.782080px;}
._3{margin-left:-1.337278px;}
._0{width:1.135440px;}
._2{width:2.301829px;}
._1{width:3.526368px;}
._1d{width:4.596182px;}
._11{width:5.832000px;}
._27{width:7.056582px;}
._e{width:8.174365px;}
._5{width:9.850373px;}
._4{width:10.920092px;}
._21{width:12.178556px;}
._20{width:13.206722px;}
._1f{width:14.369278px;}
._1e{width:15.480000px;}
._23{width:17.064000px;}
._22{width:18.576000px;}
._2a{width:21.418603px;}
._29{width:22.577269px;}
._8{width:24.192051px;}
._7{width:25.272029px;}
._25{width:27.216000px;}
._1c{width:28.328404px;}
._24{width:29.563935px;}
._f{width:31.132800px;}
._2c{width:32.688000px;}
._2b{width:33.912000px;}
._2d{width:35.798385px;}
._a{width:37.440000px;}
._9{width:38.664000px;}
._28{width:39.941275px;}
._1a{width:41.269464px;}
._10{width:42.658560px;}
._31{width:43.848000px;}
._2f{width:50.410556px;}
._2e{width:52.344000px;}
._30{width:54.887918px;}
._6{width:72.720000px;}
._b{width:172.877772px;}
._c{width:202.638252px;}
._1b{width:844.284018px;}
.fc3{color:rgb(243,149,120);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(191,191,191);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:5.760000px;}
.fs5{font-size:43.200000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:12.959976px;}
.y34{bottom:12.960022px;}
.y19{bottom:14.039978px;}
.y26{bottom:14.040024px;}
.y15{bottom:14.040070px;}
.y24{bottom:14.219971px;}
.y20{bottom:14.220016px;}
.y1c{bottom:14.220062px;}
.y41{bottom:21.959976px;}
.y4c{bottom:21.959999px;}
.y43{bottom:21.990005px;}
.y4b{bottom:30.959999px;}
.y44{bottom:30.990005px;}
.y37{bottom:41.399963px;}
.y39{bottom:41.400055px;}
.y3b{bottom:41.445007px;}
.y18{bottom:45.179993px;}
.y51{bottom:50.399986px;}
.y4e{bottom:50.445007px;}
.y52{bottom:59.399986px;}
.y4f{bottom:59.445007px;}
.y17{bottom:76.140015px;}
.y1b{bottom:76.365051px;}
.y9{bottom:105.335999px;}
.y8{bottom:131.076004px;}
.ye8{bottom:137.195995px;}
.y13a{bottom:142.775997px;}
.y121{bottom:148.175995px;}
.y134{bottom:153.029995px;}
.y30{bottom:155.009995px;}
.y54{bottom:157.709999px;}
.yc1{bottom:159.509995px;}
.y7b{bottom:167.250000px;}
.ye7{bottom:168.330002px;}
.y109{bottom:172.109997px;}
.y139{bottom:173.730000px;}
.yb5{bottom:183.629997px;}
.y133{bottom:184.169998px;}
.y120{bottom:185.609997px;}
.ye{bottom:186.870003px;}
.ydb{bottom:190.470005px;}
.y2f{bottom:191.370003px;}
.y53{bottom:195.509995px;}
.yc0{bottom:198.389992px;}
.ye6{bottom:199.290000px;}
.y108{bottom:203.250000px;}
.y138{bottom:204.870003px;}
.y7a{bottom:207.389992px;}
.yb4{bottom:214.589996px;}
.y132{bottom:215.129997px;}
.y50{bottom:221.070007px;}
.y11f{bottom:223.049995px;}
.yda{bottom:225.209999px;}
.yd{bottom:227.370003px;}
.ybf{bottom:227.549995px;}
.y2e{bottom:227.910004px;}
.ye5{bottom:230.429993px;}
.y107{bottom:234.209999px;}
.y137{bottom:235.830002px;}
.yb3{bottom:245.549995px;}
.y131{bottom:246.269989px;}
.y79{bottom:247.349991px;}
.yc{bottom:257.250000px;}
.yfc{bottom:259.589996px;}
.y11e{bottom:260.490005px;}
.ye4{bottom:261.389992px;}
.y2d{bottom:264.269989px;}
.y106{bottom:265.349991px;}
.y136{bottom:266.969994px;}
.yb2{bottom:276.690010px;}
.y130{bottom:277.230011px;}
.y78{bottom:287.490005px;}
.yfb{bottom:290.549995px;}
.y105{bottom:296.309990px;}
.y4d{bottom:296.669998px;}
.y11d{bottom:297.929993px;}
.ye3{bottom:300.269989px;}
.y2c{bottom:300.809990px;}
.yb1{bottom:307.650009px;}
.y12f{bottom:308.370003px;}
.yfa{bottom:321.690010px;}
.yb{bottom:323.129997px;}
.y77{bottom:327.450005px;}
.ya7{bottom:329.070007px;}
.ye2{bottom:335.009995px;}
.y11c{bottom:335.370003px;}
.y2b{bottom:337.349991px;}
.yb0{bottom:338.834999px;}
.y12e{bottom:339.375000px;}
.y104{bottom:358.455002px;}
.ya6{bottom:360.075005px;}
.yf9{bottom:360.615005px;}
.y76{bottom:367.634995px;}
.yaf{bottom:369.794998px;}
.y12d{bottom:370.514992px;}
.y4a{bottom:372.315010px;}
.y11b{bottom:373.035004px;}
.y2a{bottom:373.754997px;}
.ya{bottom:375.014992px;}
.y103{bottom:389.595016px;}
.ya5{bottom:391.214996px;}
.y29{bottom:397.875000px;}
.yf8{bottom:399.134995px;}
.yae{bottom:400.935013px;}
.y12c{bottom:401.474991px;}
.y11a{bottom:411.554993px;}
.y75{bottom:412.455002px;}
.y102{bottom:420.554993px;}
.ya4{bottom:422.175018px;}
.y28{bottom:429.734985px;}
.yf7{bottom:430.275009px;}
.y90{bottom:431.175018px;}
.yad{bottom:431.894989px;}
.y12b{bottom:432.615005px;}
.y7{bottom:435.314987px;}
.y49{bottom:441.615005px;}
.y119{bottom:442.695007px;}
.y101{bottom:451.695007px;}
.y6{bottom:453.314987px;}
.y5{bottom:456.015015px;}
.y74{bottom:457.994980px;}
.y4{bottom:458.535004px;}
.y3{bottom:461.054993px;}
.yf6{bottom:461.234985px;}
.y27{bottom:461.595016px;}
.y8f{bottom:462.314987px;}
.yac{bottom:463.035004px;}
.y12a{bottom:463.574982px;}
.y2{bottom:472.935013px;}
.y118{bottom:473.654984px;}
.y48{bottom:479.054993px;}
.ya3{bottom:484.275009px;}
.y63{bottom:485.175018px;}
.yf5{bottom:492.375000px;}
.y8e{bottom:493.275009px;}
.yab{bottom:493.994980px;}
.y129{bottom:494.714996px;}
.y47{bottom:495.255020px;}
.y73{bottom:502.814987px;}
.y117{bottom:504.794998px;}
.y100{bottom:508.394989px;}
.ya2{bottom:515.414978px;}
.yd3{bottom:522.974991px;}
.yf4{bottom:523.335022px;}
.y25{bottom:524.414978px;}
.yaa{bottom:525.134995px;}
.y128{bottom:525.675018px;}
.y62{bottom:526.935013px;}
.y116{bottom:535.755020px;}
.ya1{bottom:546.375000px;}
.y72{bottom:548.535004px;}
.y45{bottom:553.755020px;}
.yd2{bottom:553.935013px;}
.yf3{bottom:554.474991px;}
.y8d{bottom:555.375000px;}
.y23{bottom:556.095016px;}
.y127{bottom:556.814987px;}
.y61{bottom:563.654984px;}
.yff{bottom:565.994980px;}
.y115{bottom:566.894989px;}
.ya0{bottom:577.515015px;}
.y71{bottom:579.494980px;}
.y42{bottom:582.914978px;}
.yd1{bottom:585.074982px;}
.yf2{bottom:585.435013px;}
.y8c{bottom:586.515015px;}
.ya9{bottom:587.234985px;}
.y126{bottom:587.775009px;}
.y13c{bottom:588.134995px;}
.y60{bottom:594.615005px;}
.y114{bottom:597.855011px;}
.yfe{bottom:605.085022px;}
.y9f{bottom:608.505020px;}
.y70{bottom:610.664978px;}
.yd0{bottom:616.064987px;}
.y8b{bottom:617.505020px;}
.y125{bottom:618.945007px;}
.y22{bottom:619.125000px;}
.yf1{bottom:620.025009px;}
.y5f{bottom:625.785004px;}
.y113{bottom:628.845016px;}
.y40{bottom:630.105011px;}
.y9e{bottom:639.644989px;}
.yfd{bottom:639.824982px;}
.y6f{bottom:641.625000px;}
.ya8{bottom:643.964996px;}
.ycf{bottom:647.205002px;}
.y8a{bottom:648.644989px;}
.y124{bottom:649.904984px;}
.yf0{bottom:650.265015px;}
.y5e{bottom:656.744980px;}
.y112{bottom:659.984985px;}
.y9d{bottom:670.605011px;}
.yce{bottom:678.164978px;}
.y89{bottom:679.605011px;}
.y123{bottom:681.044998px;}
.yef{bottom:681.224991px;}
.y21{bottom:681.945007px;}
.y6e{bottom:686.445007px;}
.y5d{bottom:687.884995px;}
.y111{bottom:690.945007px;}
.ybe{bottom:691.664978px;}
.y3f{bottom:699.404984px;}
.y9c{bottom:701.744980px;}
.ycd{bottom:709.304993px;}
.y88{bottom:710.744980px;}
.y122{bottom:712.005020px;}
.yee{bottom:712.365005px;}
.y1f{bottom:713.625000px;}
.y110{bottom:722.085022px;}
.ybd{bottom:722.804993px;}
.y5c{bottom:729.464996px;}
.y6d{bottom:732.164978px;}
.y9b{bottom:732.705002px;}
.y3e{bottom:737.384995px;}
.y87{bottom:741.705002px;}
.ye1{bottom:743.144989px;}
.yed{bottom:743.324982px;}
.y10f{bottom:753.044998px;}
.ybc{bottom:753.765015px;}
.y1e{bottom:759.525009px;}
.y6c{bottom:763.125000px;}
.y9a{bottom:763.845016px;}
.ycc{bottom:766.005020px;}
.y86{bottom:772.844971px;}
.ye0{bottom:774.105011px;}
.yec{bottom:774.464996px;}
.y3d{bottom:776.445007px;}
.y1d{bottom:777.344971px;}
.y135{bottom:778.785004px;}
.y10e{bottom:784.184967px;}
.ybb{bottom:784.905029px;}
.y99{bottom:794.804993px;}
.y85{bottom:803.804993px;}
.ydf{bottom:805.245026px;}
.yeb{bottom:805.425018px;}
.y6b{bottom:807.945007px;}
.y1a{bottom:809.024963px;}
.y10d{bottom:815.144989px;}
.yba{bottom:815.864960px;}
.y3c{bottom:816.585022px;}
.ycb{bottom:822.524963px;}
.y98{bottom:825.945007px;}
.y84{bottom:834.945007px;}
.yd9{bottom:836.204956px;}
.yea{bottom:836.565033px;}
.y3a{bottom:841.964996px;}
.y1{bottom:845.925018px;}
.y10c{bottom:846.285004px;}
.yb9{bottom:847.004974px;}
.y5b{bottom:847.905029px;}
.y6a{bottom:853.664978px;}
.y97{bottom:856.905029px;}
.yca{bottom:859.964996px;}
.y83{bottom:865.905029px;}
.yd8{bottom:867.344971px;}
.ye9{bottom:867.524963px;}
.y13b{bottom:872.070007px;}
.y10b{bottom:877.289978px;}
.y5a{bottom:878.910004px;}
.y69{bottom:884.670044px;}
.yb8{bottom:885.929993px;}
.y96{bottom:888.089996px;}
.y82{bottom:897.089996px;}
.yd7{bottom:898.350037px;}
.yc9{bottom:898.710022px;}
.y38{bottom:899.609985px;}
.y16{bottom:903.030029px;}
.y59{bottom:909.690033px;}
.yb7{bottom:914.370026px;}
.y95{bottom:919.050018px;}
.y81{bottom:928.050018px;}
.y68{bottom:929.489960px;}
.yc8{bottom:929.670044px;}
.y10a{bottom:934.170044px;}
.yb6{bottom:943.350037px;}
.y94{bottom:950.190033px;}
.y36{bottom:957.390015px;}
.y80{bottom:959.190033px;}
.yd6{bottom:960.449982px;}
.yc7{bottom:960.809967px;}
.y67{bottom:979.890015px;}
.y93{bottom:981.149963px;}
.y7f{bottom:990.149963px;}
.yd5{bottom:991.410004px;}
.yc6{bottom:991.769989px;}
.y14{bottom:996.989960px;}
.y58{bottom:1005.089996px;}
.y92{bottom:1012.109985px;}
.y35{bottom:1014.989960px;}
.y7e{bottom:1021.109985px;}
.yde{bottom:1022.550018px;}
.yc5{bottom:1022.910004px;}
.y66{bottom:1030.289978px;}
.y91{bottom:1043.250000px;}
.y33{bottom:1044.149963px;}
.y57{bottom:1046.489960px;}
.y7d{bottom:1052.250000px;}
.yd4{bottom:1052.969971px;}
.ydd{bottom:1053.510040px;}
.yc4{bottom:1053.870026px;}
.y13{bottom:1064.129974px;}
.y65{bottom:1077.629974px;}
.y56{bottom:1082.129974px;}
.yc3{bottom:1085.010040px;}
.y32{bottom:1086.989960px;}
.y7c{bottom:1104.629974px;}
.y64{bottom:1104.809967px;}
.ydc{bottom:1110.390015px;}
.yc2{bottom:1115.969971px;}
.y31{bottom:1116.690033px;}
.y12{bottom:1117.230011px;}
.y55{bottom:1118.489960px;}
.y11{bottom:1147.140015px;}
.y10{bottom:1178.100037px;}
.yf{bottom:1200.471870px;}
.h3{height:5.920372px;}
.h12{height:28.439999px;}
.ha{height:30.959999px;}
.hd{height:31.140000px;}
.h9{height:42.335156px;}
.h17{height:46.439999px;}
.h18{height:46.475999px;}
.h1e{height:49.150080px;}
.h16{height:50.326875px;}
.h1c{height:53.121094px;}
.h13{height:56.879997px;}
.h14{height:56.916000px;}
.h10{height:59.439023px;}
.he{height:62.100002px;}
.hf{height:62.136000px;}
.h5{height:62.327813px;}
.h1f{height:64.546875px;}
.h15{height:65.884219px;}
.h8{height:69.086250px;}
.h11{height:72.090000px;}
.h1a{height:74.879997px;}
.h19{height:74.916000px;}
.h4{height:75.093750px;}
.hb{height:93.060000px;}
.hc{height:93.275997px;}
.h1d{height:95.245664px;}
.h1b{height:99.874688px;}
.h6{height:107.793281px;}
.h7{height:125.406562px;}
.h1{height:1263.000000px;}
.h2{height:1263.059967px;}
.h0{height:1263.060000px;}
.w7{width:52.055998px;}
.wa{width:94.535997px;}
.wb{width:114.335999px;}
.w8{width:116.100002px;}
.wf{width:116.279995px;}
.w5{width:250.995003px;}
.w3{width:253.875000px;}
.wd{width:263.415000px;}
.we{width:296.849991px;}
.w9{width:467.025009px;}
.w4{width:479.595016px;}
.w6{width:482.835022px;}
.wc{width:501.015015px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:8.280001px;}
.x5{left:77.219999px;}
.x2{left:84.959986px;}
.xf{left:102.995989px;}
.x16{left:108.035990px;}
.x11{left:111.995989px;}
.x1a{left:117.395987px;}
.x10{left:120.995989px;}
.x9{left:129.996002px;}
.x12{left:138.995989px;}
.x1c{left:151.769987px;}
.x13{left:165.989992px;}
.xa{left:172.470005px;}
.x1f{left:175.169985px;}
.x22{left:176.429991px;}
.x14{left:192.989992px;}
.x19{left:196.589983px;}
.xe{left:200.189997px;}
.x20{left:218.189997px;}
.x3{left:246.629984px;}
.xb{left:287.535004px;}
.x8{left:329.115005px;}
.x7{left:331.815010px;}
.xc{left:341.355011px;}
.x17{left:397.515001px;}
.x1d{left:446.114992px;}
.x15{left:507.164965px;}
.x1e{left:606.345003px;}
.xd{left:638.970016px;}
.x4{left:674.838045px;}
.x1b{left:684.689974px;}
.x18{left:689.189974px;}
.x21{left:784.769976px;}
.x1{left:807.449968px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.097067pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016640pt;}
.ls10{letter-spacing:0.033280pt;}
.ls13{letter-spacing:0.063971pt;}
.ls12{letter-spacing:0.064011pt;}
.ls4{letter-spacing:0.127922pt;}
.ls7{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.161276pt;}
.ls8{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.255966pt;}
.ls6{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.256007pt;}
.ls14{letter-spacing:0.256009pt;}
.ls9{letter-spacing:0.271334pt;}
.ls5{letter-spacing:0.362615pt;}
.ls1e{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.673280pt;}
.ls1c{letter-spacing:1.191680pt;}
.ls15{letter-spacing:1.312000pt;}
.ls16{letter-spacing:7.056611pt;}
.ls1d{letter-spacing:9.087964pt;}
.ls1a{letter-spacing:19.327954pt;}
.ls17{letter-spacing:25.088008pt;}
.ls18{letter-spacing:49.232640pt;}
.lsd{letter-spacing:53.391367pt;}
.ls1b{letter-spacing:56.912653pt;}
.lsf{letter-spacing:86.650037pt;}
.lsa{letter-spacing:750.474683pt;}
.wse{word-spacing:-53.120000pt;}
.ws0{word-spacing:-29.712640pt;}
.wsc{word-spacing:-24.975360pt;}
.ws9{word-spacing:-23.696640pt;}
.ws8{word-spacing:-23.680000pt;}
.wsd{word-spacing:-23.663360pt;}
.wsf{word-spacing:-18.240000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws10{word-spacing:-17.728000pt;}
.wsb{word-spacing:-17.600000pt;}
.wsa{word-spacing:-17.408000pt;}
.ws7{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.271573pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-20.676697pt;}
._16{margin-left:-16.812521pt;}
._13{margin-left:-14.387397pt;}
._14{margin-left:-12.485957pt;}
._17{margin-left:-10.431992pt;}
._19{margin-left:-7.093390pt;}
._18{margin-left:-5.976110pt;}
._26{margin-left:-4.881940pt;}
._12{margin-left:-3.863040pt;}
._d{margin-left:-2.472960pt;}
._3{margin-left:-1.188692pt;}
._0{width:1.009280pt;}
._2{width:2.046070pt;}
._1{width:3.134549pt;}
._1d{width:4.085495pt;}
._11{width:5.184000pt;}
._27{width:6.272518pt;}
._e{width:7.266102pt;}
._5{width:8.755887pt;}
._4{width:9.706748pt;}
._21{width:10.825383pt;}
._20{width:11.739308pt;}
._1f{width:12.772692pt;}
._1e{width:13.760000pt;}
._23{width:15.168000pt;}
._22{width:16.512000pt;}
._2a{width:19.038758pt;}
._29{width:20.068684pt;}
._8{width:21.504046pt;}
._7{width:22.464026pt;}
._25{width:24.192000pt;}
._1c{width:25.180803pt;}
._24{width:26.279053pt;}
._f{width:27.673600pt;}
._2c{width:29.056000pt;}
._2b{width:30.144000pt;}
._2d{width:31.820787pt;}
._a{width:33.280000pt;}
._9{width:34.368000pt;}
._28{width:35.503356pt;}
._1a{width:36.683968pt;}
._10{width:37.918720pt;}
._31{width:38.976000pt;}
._2f{width:44.809383pt;}
._2e{width:46.528000pt;}
._30{width:48.789260pt;}
._6{width:64.640000pt;}
._b{width:153.669131pt;}
._c{width:180.122891pt;}
._1b{width:750.474683pt;}
.fs0{font-size:5.120000pt;}
.fs5{font-size:38.400000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:11.519979pt;}
.y34{bottom:11.520020pt;}
.y19{bottom:12.479980pt;}
.y26{bottom:12.480021pt;}
.y15{bottom:12.480062pt;}
.y24{bottom:12.639974pt;}
.y20{bottom:12.640015pt;}
.y1c{bottom:12.640055pt;}
.y41{bottom:19.519979pt;}
.y4c{bottom:19.519999pt;}
.y43{bottom:19.546672pt;}
.y4b{bottom:27.519999pt;}
.y44{bottom:27.546672pt;}
.y37{bottom:36.799967pt;}
.y39{bottom:36.800049pt;}
.y3b{bottom:36.840007pt;}
.y18{bottom:40.159993pt;}
.y51{bottom:44.799988pt;}
.y4e{bottom:44.840007pt;}
.y52{bottom:52.799988pt;}
.y4f{bottom:52.840007pt;}
.y17{bottom:67.680013pt;}
.y1b{bottom:67.880046pt;}
.y9{bottom:93.631999pt;}
.y8{bottom:116.512004pt;}
.ye8{bottom:121.951996pt;}
.y13a{bottom:126.911997pt;}
.y121{bottom:131.711995pt;}
.y134{bottom:136.026662pt;}
.y30{bottom:137.786662pt;}
.y54{bottom:140.186666pt;}
.yc1{bottom:141.786662pt;}
.y7b{bottom:148.666667pt;}
.ye7{bottom:149.626668pt;}
.y109{bottom:152.986664pt;}
.y139{bottom:154.426666pt;}
.yb5{bottom:163.226664pt;}
.y133{bottom:163.706665pt;}
.y120{bottom:164.986664pt;}
.ye{bottom:166.106669pt;}
.ydb{bottom:169.306671pt;}
.y2f{bottom:170.106669pt;}
.y53{bottom:173.786662pt;}
.yc0{bottom:176.346659pt;}
.ye6{bottom:177.146667pt;}
.y108{bottom:180.666667pt;}
.y138{bottom:182.106669pt;}
.y7a{bottom:184.346659pt;}
.yb4{bottom:190.746663pt;}
.y132{bottom:191.226664pt;}
.y50{bottom:196.506673pt;}
.y11f{bottom:198.266663pt;}
.yda{bottom:200.186666pt;}
.yd{bottom:202.106669pt;}
.ybf{bottom:202.266663pt;}
.y2e{bottom:202.586670pt;}
.ye5{bottom:204.826660pt;}
.y107{bottom:208.186666pt;}
.y137{bottom:209.626668pt;}
.yb3{bottom:218.266663pt;}
.y131{bottom:218.906657pt;}
.y79{bottom:219.866659pt;}
.yc{bottom:228.666667pt;}
.yfc{bottom:230.746663pt;}
.y11e{bottom:231.546672pt;}
.ye4{bottom:232.346659pt;}
.y2d{bottom:234.906657pt;}
.y106{bottom:235.866659pt;}
.y136{bottom:237.306661pt;}
.yb2{bottom:245.946676pt;}
.y130{bottom:246.426676pt;}
.y78{bottom:255.546672pt;}
.yfb{bottom:258.266663pt;}
.y105{bottom:263.386658pt;}
.y4d{bottom:263.706665pt;}
.y11d{bottom:264.826660pt;}
.ye3{bottom:266.906657pt;}
.y2c{bottom:267.386658pt;}
.yb1{bottom:273.466675pt;}
.y12f{bottom:274.106669pt;}
.yfa{bottom:285.946676pt;}
.yb{bottom:287.226664pt;}
.y77{bottom:291.066671pt;}
.ya7{bottom:292.506673pt;}
.ye2{bottom:297.786662pt;}
.y11c{bottom:298.106669pt;}
.y2b{bottom:299.866659pt;}
.yb0{bottom:301.186666pt;}
.y12e{bottom:301.666667pt;}
.y104{bottom:318.626668pt;}
.ya6{bottom:320.066671pt;}
.yf9{bottom:320.546672pt;}
.y76{bottom:326.786662pt;}
.yaf{bottom:328.706665pt;}
.y12d{bottom:329.346659pt;}
.y4a{bottom:330.946676pt;}
.y11b{bottom:331.586670pt;}
.y2a{bottom:332.226664pt;}
.ya{bottom:333.346659pt;}
.y103{bottom:346.306681pt;}
.ya5{bottom:347.746663pt;}
.y29{bottom:353.666667pt;}
.yf8{bottom:354.786662pt;}
.yae{bottom:356.386678pt;}
.y12c{bottom:356.866659pt;}
.y11a{bottom:365.826660pt;}
.y75{bottom:366.626668pt;}
.y102{bottom:373.826660pt;}
.ya4{bottom:375.266683pt;}
.y28{bottom:381.986654pt;}
.yf7{bottom:382.466675pt;}
.y90{bottom:383.266683pt;}
.yad{bottom:383.906657pt;}
.y12b{bottom:384.546672pt;}
.y7{bottom:386.946655pt;}
.y49{bottom:392.546672pt;}
.y119{bottom:393.506673pt;}
.y101{bottom:401.506673pt;}
.y6{bottom:402.946655pt;}
.y5{bottom:405.346680pt;}
.y74{bottom:407.106649pt;}
.y4{bottom:407.586670pt;}
.y3{bottom:409.826660pt;}
.yf6{bottom:409.986654pt;}
.y27{bottom:410.306681pt;}
.y8f{bottom:410.946655pt;}
.yac{bottom:411.586670pt;}
.y12a{bottom:412.066650pt;}
.y2{bottom:420.386678pt;}
.y118{bottom:421.026652pt;}
.y48{bottom:425.826660pt;}
.ya3{bottom:430.466675pt;}
.y63{bottom:431.266683pt;}
.yf5{bottom:437.666667pt;}
.y8e{bottom:438.466675pt;}
.yab{bottom:439.106649pt;}
.y129{bottom:439.746663pt;}
.y47{bottom:440.226685pt;}
.y73{bottom:446.946655pt;}
.y117{bottom:448.706665pt;}
.y100{bottom:451.906657pt;}
.ya2{bottom:458.146647pt;}
.yd3{bottom:464.866659pt;}
.yf4{bottom:465.186686pt;}
.y25{bottom:466.146647pt;}
.yaa{bottom:466.786662pt;}
.y128{bottom:467.266683pt;}
.y62{bottom:468.386678pt;}
.y116{bottom:476.226685pt;}
.ya1{bottom:485.666667pt;}
.y72{bottom:487.586670pt;}
.y45{bottom:492.226685pt;}
.yd2{bottom:492.386678pt;}
.yf3{bottom:492.866659pt;}
.y8d{bottom:493.666667pt;}
.y23{bottom:494.306681pt;}
.y127{bottom:494.946655pt;}
.y61{bottom:501.026652pt;}
.yff{bottom:503.106649pt;}
.y115{bottom:503.906657pt;}
.ya0{bottom:513.346680pt;}
.y71{bottom:515.106649pt;}
.y42{bottom:518.146647pt;}
.yd1{bottom:520.066650pt;}
.yf2{bottom:520.386678pt;}
.y8c{bottom:521.346680pt;}
.ya9{bottom:521.986654pt;}
.y126{bottom:522.466675pt;}
.y13c{bottom:522.786662pt;}
.y60{bottom:528.546672pt;}
.y114{bottom:531.426676pt;}
.yfe{bottom:537.853353pt;}
.y9f{bottom:540.893351pt;}
.y70{bottom:542.813314pt;}
.yd0{bottom:547.613322pt;}
.y8b{bottom:548.893351pt;}
.y125{bottom:550.173340pt;}
.y22{bottom:550.333333pt;}
.yf1{bottom:551.133341pt;}
.y5f{bottom:556.253337pt;}
.y113{bottom:558.973348pt;}
.y40{bottom:560.093343pt;}
.y9e{bottom:568.573324pt;}
.yfd{bottom:568.733317pt;}
.y6f{bottom:570.333333pt;}
.ya8{bottom:572.413330pt;}
.ycf{bottom:575.293335pt;}
.y8a{bottom:576.573324pt;}
.y124{bottom:577.693319pt;}
.yf0{bottom:578.013346pt;}
.y5e{bottom:583.773315pt;}
.y112{bottom:586.653320pt;}
.y9d{bottom:596.093343pt;}
.yce{bottom:602.813314pt;}
.y89{bottom:604.093343pt;}
.y123{bottom:605.373332pt;}
.yef{bottom:605.533325pt;}
.y21{bottom:606.173340pt;}
.y6e{bottom:610.173340pt;}
.y5d{bottom:611.453328pt;}
.y111{bottom:614.173340pt;}
.ybe{bottom:614.813314pt;}
.y3f{bottom:621.693319pt;}
.y9c{bottom:623.773315pt;}
.ycd{bottom:630.493327pt;}
.y88{bottom:631.773315pt;}
.y122{bottom:632.893351pt;}
.yee{bottom:633.213338pt;}
.y1f{bottom:634.333333pt;}
.y110{bottom:641.853353pt;}
.ybd{bottom:642.493327pt;}
.y5c{bottom:648.413330pt;}
.y6d{bottom:650.813314pt;}
.y9b{bottom:651.293335pt;}
.y3e{bottom:655.453328pt;}
.y87{bottom:659.293335pt;}
.ye1{bottom:660.573324pt;}
.yed{bottom:660.733317pt;}
.y10f{bottom:669.373332pt;}
.ybc{bottom:670.013346pt;}
.y1e{bottom:675.133341pt;}
.y6c{bottom:678.333333pt;}
.y9a{bottom:678.973348pt;}
.ycc{bottom:680.893351pt;}
.y86{bottom:686.973307pt;}
.ye0{bottom:688.093343pt;}
.yec{bottom:688.413330pt;}
.y3d{bottom:690.173340pt;}
.y1d{bottom:690.973307pt;}
.y135{bottom:692.253337pt;}
.y10e{bottom:697.053304pt;}
.ybb{bottom:697.693359pt;}
.y99{bottom:706.493327pt;}
.y85{bottom:714.493327pt;}
.ydf{bottom:715.773356pt;}
.yeb{bottom:715.933350pt;}
.y6b{bottom:718.173340pt;}
.y1a{bottom:719.133301pt;}
.y10d{bottom:724.573324pt;}
.yba{bottom:725.213298pt;}
.y3c{bottom:725.853353pt;}
.ycb{bottom:731.133301pt;}
.y98{bottom:734.173340pt;}
.y84{bottom:742.173340pt;}
.yd9{bottom:743.293294pt;}
.yea{bottom:743.613363pt;}
.y3a{bottom:748.413330pt;}
.y1{bottom:751.933350pt;}
.y10c{bottom:752.253337pt;}
.yb9{bottom:752.893311pt;}
.y5b{bottom:753.693359pt;}
.y6a{bottom:758.813314pt;}
.y97{bottom:761.693359pt;}
.yca{bottom:764.413330pt;}
.y83{bottom:769.693359pt;}
.yd8{bottom:770.973307pt;}
.ye9{bottom:771.133301pt;}
.y13b{bottom:775.173340pt;}
.y10b{bottom:779.813314pt;}
.y5a{bottom:781.253337pt;}
.y69{bottom:786.373372pt;}
.yb8{bottom:787.493327pt;}
.y96{bottom:789.413330pt;}
.y82{bottom:797.413330pt;}
.yd7{bottom:798.533366pt;}
.yc9{bottom:798.853353pt;}
.y38{bottom:799.653320pt;}
.y16{bottom:802.693359pt;}
.y59{bottom:808.613363pt;}
.yb7{bottom:812.773356pt;}
.y95{bottom:816.933350pt;}
.y81{bottom:824.933350pt;}
.y68{bottom:826.213298pt;}
.yc8{bottom:826.373372pt;}
.y10a{bottom:830.373372pt;}
.yb6{bottom:838.533366pt;}
.y94{bottom:844.613363pt;}
.y36{bottom:851.013346pt;}
.y80{bottom:852.613363pt;}
.yd6{bottom:853.733317pt;}
.yc7{bottom:854.053304pt;}
.y67{bottom:871.013346pt;}
.y93{bottom:872.133301pt;}
.y7f{bottom:880.133301pt;}
.yd5{bottom:881.253337pt;}
.yc6{bottom:881.573324pt;}
.y14{bottom:886.213298pt;}
.y58{bottom:893.413330pt;}
.y92{bottom:899.653320pt;}
.y35{bottom:902.213298pt;}
.y7e{bottom:907.653320pt;}
.yde{bottom:908.933350pt;}
.yc5{bottom:909.253337pt;}
.y66{bottom:915.813314pt;}
.y91{bottom:927.333333pt;}
.y33{bottom:928.133301pt;}
.y57{bottom:930.213298pt;}
.y7d{bottom:935.333333pt;}
.yd4{bottom:935.973307pt;}
.ydd{bottom:936.453369pt;}
.yc4{bottom:936.773356pt;}
.y13{bottom:945.893311pt;}
.y65{bottom:957.893311pt;}
.y56{bottom:961.893311pt;}
.yc3{bottom:964.453369pt;}
.y32{bottom:966.213298pt;}
.y7c{bottom:981.893311pt;}
.y64{bottom:982.053304pt;}
.ydc{bottom:987.013346pt;}
.yc2{bottom:991.973307pt;}
.y31{bottom:992.613363pt;}
.y12{bottom:993.093343pt;}
.y55{bottom:994.213298pt;}
.y11{bottom:1019.680013pt;}
.y10{bottom:1047.200033pt;}
.yf{bottom:1067.086107pt;}
.h3{height:5.262553pt;}
.h12{height:25.279999pt;}
.ha{height:27.519999pt;}
.hd{height:27.680000pt;}
.h9{height:37.631250pt;}
.h17{height:41.279999pt;}
.h18{height:41.311999pt;}
.h1e{height:43.688960pt;}
.h16{height:44.735000pt;}
.h1c{height:47.218750pt;}
.h13{height:50.559998pt;}
.h14{height:50.592000pt;}
.h10{height:52.834688pt;}
.he{height:55.200002pt;}
.hf{height:55.232000pt;}
.h5{height:55.402500pt;}
.h1f{height:57.375000pt;}
.h15{height:58.563750pt;}
.h8{height:61.410000pt;}
.h11{height:64.080000pt;}
.h1a{height:66.559998pt;}
.h19{height:66.592000pt;}
.h4{height:66.750000pt;}
.hb{height:82.720000pt;}
.hc{height:82.911997pt;}
.h1d{height:84.662813pt;}
.h1b{height:88.777500pt;}
.h6{height:95.816250pt;}
.h7{height:111.472500pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.719971pt;}
.h0{height:1122.720000pt;}
.w7{width:46.271998pt;}
.wa{width:84.031998pt;}
.wb{width:101.631999pt;}
.w8{width:103.200002pt;}
.wf{width:103.359996pt;}
.w5{width:223.106669pt;}
.w3{width:225.666667pt;}
.wd{width:234.146667pt;}
.we{width:263.866659pt;}
.w9{width:415.133341pt;}
.w4{width:426.306681pt;}
.w6{width:429.186686pt;}
.wc{width:445.346680pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:7.360001pt;}
.x5{left:68.639999pt;}
.x2{left:75.519987pt;}
.xf{left:91.551990pt;}
.x16{left:96.031991pt;}
.x11{left:99.551990pt;}
.x1a{left:104.351988pt;}
.x10{left:107.551990pt;}
.x9{left:115.552002pt;}
.x12{left:123.551990pt;}
.x1c{left:134.906655pt;}
.x13{left:147.546660pt;}
.xa{left:153.306671pt;}
.x1f{left:155.706653pt;}
.x22{left:156.826659pt;}
.x14{left:171.546660pt;}
.x19{left:174.746652pt;}
.xe{left:177.946664pt;}
.x20{left:193.946664pt;}
.x3{left:219.226652pt;}
.xb{left:255.586670pt;}
.x8{left:292.546672pt;}
.x7{left:294.946676pt;}
.xc{left:303.426676pt;}
.x17{left:353.346668pt;}
.x1d{left:396.546660pt;}
.x15{left:450.813302pt;}
.x1e{left:538.973336pt;}
.xd{left:567.973348pt;}
.x4{left:599.856040pt;}
.x1b{left:608.613310pt;}
.x18{left:612.613310pt;}
.x21{left:697.573312pt;}
.x1{left:717.733305pt;}
}




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