
    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_e3a9c150323cf5c9c25539db.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_6d47fd6829923d16b8d40249.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_112bf1553439f812d7a37881.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_fac4d4b63a77c0760f837dfc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854980;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_72e153d1bcd115cc93b70d76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_10a43d3107c58e06d786f593.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936523;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_a4ce10d801b06d2e2aab5db5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_564979f74eb66093e52f8446.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_f8c7edbc45753133291da057.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.875488;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_8e50356d8d6c6493ed821dc3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.048828;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);}
.v6{vertical-align:-46.092000px;}
.v4{vertical-align:-40.308000px;}
.v7{vertical-align:-28.404000px;}
.v5{vertical-align:-22.278000px;}
.v2{vertical-align:-10.026000px;}
.v1{vertical-align:-2.724000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.026000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.120078px;}
.ls3{letter-spacing:0.131976px;}
.ls4{letter-spacing:0.205200px;}
.ls5{letter-spacing:33.446400px;}
.ls7{letter-spacing:83.125350px;}
.ls6{letter-spacing:84.470400px;}
.ls1{letter-spacing:92.978904px;}
.ls2{letter-spacing:98.127660px;}
.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;}
}
.ws3{word-spacing:-59.832000px;}
.ws1d{word-spacing:-46.545972px;}
.ws13{word-spacing:-43.202028px;}
.ws4{word-spacing:-39.902958px;}
.wsb{word-spacing:-39.724776px;}
.wsa{word-spacing:-39.592800px;}
.ws8{word-spacing:-33.261606px;}
.ws9{word-spacing:-29.916000px;}
.wsc{word-spacing:-23.272986px;}
.ws5{word-spacing:-23.096814px;}
.ws2{word-spacing:-18.278676px;}
.ws6{word-spacing:-14.981268px;}
.ws1e{word-spacing:-0.240156px;}
.ws0{word-spacing:-0.084018px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:53.381004px;}
.ws7{word-spacing:67.003524px;}
.ws12{word-spacing:164.070000px;}
.wse{word-spacing:221.430000px;}
.ws11{word-spacing:230.922000px;}
.ws10{word-spacing:281.478000px;}
.wsf{word-spacing:439.932000px;}
.ws17{word-spacing:478.884000px;}
.ws15{word-spacing:499.506000px;}
.ws19{word-spacing:529.440000px;}
.ws1b{word-spacing:545.736000px;}
.ws18{word-spacing:784.848000px;}
.wsd{word-spacing:986.520000px;}
.ws14{word-spacing:1007.760000px;}
.ws16{word-spacing:1307.244000px;}
.ws1a{word-spacing:1331.436000px;}
._e{margin-left:-19.179024px;}
._f{margin-left:-18.091692px;}
._23{margin-left:-13.088502px;}
._12{margin-left:-11.988000px;}
._2{margin-left:-10.822524px;}
._d{margin-left:-9.578052px;}
._4{margin-left:-7.085004px;}
._3{margin-left:-6.048000px;}
._a{margin-left:-5.041890px;}
._1{margin-left:-3.461376px;}
._9{margin-left:-2.160000px;}
._0{margin-left:-1.027596px;}
._6{width:1.160976px;}
._8{width:2.348880px;}
._11{width:134.568000px;}
._17{width:231.642000px;}
._22{width:239.254428px;}
._14{width:245.148000px;}
._19{width:252.138000px;}
._1b{width:261.726000px;}
._c{width:268.704000px;}
._13{width:270.996000px;}
._16{width:275.088000px;}
._18{width:281.454000px;}
._1a{width:305.058000px;}
._1c{width:311.394000px;}
._15{width:314.304000px;}
._21{width:517.848000px;}
._1f{width:529.104000px;}
._1d{width:559.038000px;}
._20{width:574.824000px;}
._1e{width:589.368000px;}
._7{width:1193.733996px;}
._b{width:4189.919724px;}
._10{width:4193.825724px;}
._5{width:4219.847724px;}
.fc10{color:rgb(76,175,80);}
.fce{color:rgb(172,57,17);}
.fcd{color:rgb(124,77,255);}
.fc3{color:rgb(178,178,178);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(102,102,102);}
.fc5{color:rgb(189,189,189);}
.fc7{color:rgb(117,117,117);}
.fca{color:rgb(204,204,204);}
.fc6{color:rgb(63,81,181);}
.fcf{color:rgb(255,23,68);}
.fcc{color:rgb(224,224,224);}
.fc8{color:rgb(213,0,249);}
.fc9{color:rgb(255,215,64);}
.fc0{color:rgb(153,153,153);}
.fc1{color:rgb(66,66,66);}
.fcb{color:transparent;}
.fsa{font-size:47.964000px;}
.fs0{font-size:54.084000px;}
.fs7{font-size:60.036000px;}
.fs14{font-size:62.928000px;}
.fs8{font-size:65.988000px;}
.fsf{font-size:75.684000px;}
.fs4{font-size:78.066000px;}
.fsd{font-size:83.382000px;}
.fs3{font-size:84.018000px;}
.fs16{font-size:86.400000px;}
.fs12{font-size:89.970000px;}
.fs13{font-size:95.922000px;}
.fs10{font-size:98.988000px;}
.fs5{font-size:108.000000px;}
.fs11{font-size:120.078000px;}
.fs17{font-size:126.030000px;}
.fs2{font-size:131.982000px;}
.fsc{font-size:144.054000px;}
.fsb{font-size:155.964000px;}
.fs9{font-size:168.036000px;}
.fs15{font-size:192.018000px;}
.fs6{font-size:216.000000px;}
.fs1{font-size:239.982000px;}
.fse{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y3{bottom:8.503500px;}
.ya{bottom:9.354000px;}
.y83{bottom:9.949500px;}
.y1b{bottom:10.288500px;}
.y14{bottom:10.714500px;}
.y15{bottom:11.182500px;}
.yad{bottom:15.688500px;}
.yc4{bottom:19.134000px;}
.yd{bottom:19.303500px;}
.y2{bottom:23.640000px;}
.y12{bottom:24.363000px;}
.y82{bottom:25.086000px;}
.y18{bottom:28.317000px;}
.y118{bottom:30.912000px;}
.yb7{bottom:35.971500px;}
.y32{bottom:36.013500px;}
.yc3{bottom:38.055000px;}
.y109{bottom:38.182500px;}
.y81{bottom:40.222500px;}
.y13{bottom:40.945500px;}
.y9f{bottom:45.580500px;}
.yac{bottom:45.921000px;}
.ybb{bottom:46.303500px;}
.y36{bottom:46.345500px;}
.y27{bottom:47.664000px;}
.y80{bottom:55.360500px;}
.yc2{bottom:56.976000px;}
.y9{bottom:57.783000px;}
.y43{bottom:59.782500px;}
.y117{bottom:64.374000px;}
.y56{bottom:65.607000px;}
.yed{bottom:67.435500px;}
.yfb{bottom:67.477500px;}
.yb6{bottom:69.433500px;}
.y31{bottom:69.477000px;}
.y7f{bottom:70.497000px;}
.y9e{bottom:75.855000px;}
.yc1{bottom:75.897000px;}
.yab{bottom:76.152000px;}
.yba{bottom:79.767000px;}
.y35{bottom:79.809000px;}
.y7e{bottom:85.633500px;}
.y42{bottom:85.846500px;}
.y26{bottom:90.141000px;}
.y55{bottom:91.161000px;}
.yc0{bottom:94.818000px;}
.y7d{bottom:100.771500px;}
.ye0{bottom:104.215500px;}
.yaa{bottom:106.383000px;}
.ybf{bottom:113.739000px;}
.y7c{bottom:115.908000px;}
.y54{bottom:116.716500px;}
.y116{bottom:119.097000px;}
.yec{bottom:120.202500px;}
.yfa{bottom:120.244500px;}
.y7b{bottom:131.044500px;}
.y100{bottom:131.343000px;}
.y8{bottom:131.767500px;}
.y41{bottom:132.490500px;}
.ybe{bottom:132.661500px;}
.y25{bottom:135.552000px;}
.ya9{bottom:137.167500px;}
.y10a{bottom:141.802500px;}
.yb3{bottom:142.057500px;}
.y2e{bottom:142.101000px;}
.y108{bottom:142.780500px;}
.y7a{bottom:146.182500px;}
.ybd{bottom:151.582500px;}
.y115{bottom:152.560500px;}
.y7{bottom:155.706000px;}
.y40{bottom:158.556000px;}
.y79{bottom:171.439500px;}
.yeb{bottom:173.055000px;}
.yf9{bottom:173.097000px;}
.yb2{bottom:175.521000px;}
.y2d{bottom:175.563000px;}
.ydf{bottom:175.648500px;}
.y24{bottom:180.963000px;}
.ybc{bottom:184.747500px;}
.y114{bottom:186.022500px;}
.y53{bottom:186.150000px;}
.y78{bottom:186.576000px;}
.yb9{bottom:191.848500px;}
.y34{bottom:191.890500px;}
.y123{bottom:192.231000px;}
.y1a{bottom:193.123500px;}
.yff{bottom:198.141000px;}
.y5f{bottom:200.097000px;}
.yd7{bottom:204.222000px;}
.y3f{bottom:205.200000px;}
.y107{bottom:206.602500px;}
.y52{bottom:211.705500px;}
.y77{bottom:211.833000px;}
.y9d{bottom:212.088000px;}
.y6{bottom:213.661500px;}
.y113{bottom:219.486000px;}
.yd8{bottom:223.143000px;}
.ya8{bottom:224.376000px;}
.yb8{bottom:225.312000px;}
.y33{bottom:225.354000px;}
.y122{bottom:225.694500px;}
.yea{bottom:225.906000px;}
.yf8{bottom:225.949500px;}
.y9c{bottom:227.224500px;}
.y3e{bottom:231.264000px;}
.y23{bottom:232.710000px;}
.yca{bottom:235.218000px;}
.y76{bottom:237.088500px;}
.y51{bottom:237.259500px;}
.yd6{bottom:242.064000px;}
.y9b{bottom:242.361000px;}
.yde{bottom:247.039500px;}
.y5e{bottom:247.422000px;}
.y75{bottom:252.226500px;}
.y112{bottom:252.949500px;}
.yc9{bottom:254.139000px;}
.ya7{bottom:254.607000px;}
.y9a{bottom:257.499000px;}
.yd5{bottom:260.985000px;}
.y74{bottom:267.363000px;}
.y99{bottom:272.635500px;}
.ycd{bottom:273.061500px;}
.y106{bottom:276.292500px;}
.y3d{bottom:277.908000px;}
.y19{bottom:278.461500px;}
.ye9{bottom:278.758500px;}
.yf7{bottom:278.800500px;}
.yd4{bottom:279.906000px;}
.y1c{bottom:280.077000px;}
.y121{bottom:280.417500px;}
.y73{bottom:282.501000px;}
.yb1{bottom:283.945500px;}
.y2c{bottom:283.989000px;}
.ya6{bottom:284.839500px;}
.y111{bottom:286.411500px;}
.y5d{bottom:286.710000px;}
.y98{bottom:287.772000px;}
.ycc{bottom:291.982500px;}
.y72{bottom:297.637500px;}
.yd3{bottom:298.828500px;}
.y97{bottom:302.910000px;}
.y3c{bottom:303.972000px;}
.y50{bottom:306.694500px;}
.y28{bottom:308.565000px;}
.yfe{bottom:308.905500px;}
.yc8{bottom:310.903500px;}
.yc{bottom:312.264000px;}
.y71{bottom:312.774000px;}
.y120{bottom:313.879500px;}
.ye{bottom:314.901000px;}
.ya5{bottom:315.070500px;}
.yb0{bottom:317.409000px;}
.y2b{bottom:317.451000px;}
.yd2{bottom:317.749500px;}
.y96{bottom:318.046500px;}
.ydd{bottom:318.429000px;}
.y22{bottom:320.640000px;}
.y5c{bottom:325.998000px;}
.y70{bottom:327.912000px;}
.yc7{bottom:329.824500px;}
.ye8{bottom:331.611000px;}
.yf6{bottom:331.653000px;}
.y4f{bottom:332.248500px;}
.y95{bottom:333.183000px;}
.yd1{bottom:336.670500px;}
.y105{bottom:339.859500px;}
.y5{bottom:340.879500px;}
.y110{bottom:341.134500px;}
.ya4{bottom:345.855000px;}
.y11f{bottom:347.343000px;}
.y94{bottom:348.321000px;}
.ycb{bottom:348.745500px;}
.y3b{bottom:350.617500px;}
.y104{bottom:351.382500px;}
.y6f{bottom:353.167500px;}
.yd0{bottom:355.591500px;}
.y4e{bottom:357.802500px;}
.y21{bottom:363.117000px;}
.y93{bottom:363.457500px;}
.y5b{bottom:365.031000px;}
.yc6{bottom:367.666500px;}
.ycf{bottom:374.512500px;}
.y10f{bottom:374.598000px;}
.yfd{bottom:375.703500px;}
.y3a{bottom:376.681500px;}
.y6e{bottom:378.424500px;}
.y92{bottom:378.595500px;}
.y11e{bottom:380.806500px;}
.y4d{bottom:383.356500px;}
.ye7{bottom:386.121000px;}
.yf5{bottom:386.163000px;}
.y6d{bottom:393.561000px;}
.y91{bottom:393.732000px;}
.ydc{bottom:394.029000px;}
.y5a{bottom:395.262000px;}
.ye4{bottom:397.941000px;}
.yf2{bottom:397.983000px;}
.yc5{bottom:398.706000px;}
.yce{bottom:407.677500px;}
.y10e{bottom:408.061500px;}
.yd9{bottom:408.316500px;}
.y20{bottom:408.528000px;}
.y6c{bottom:408.699000px;}
.y90{bottom:408.868500px;}
.y4c{bottom:408.912000px;}
.ye6{bottom:409.719000px;}
.yf4{bottom:409.761000px;}
.ye1{bottom:414.013500px;}
.yee{bottom:414.055500px;}
.y103{bottom:414.949500px;}
.ydb{bottom:417.628500px;}
.ye3{bottom:421.539000px;}
.yf1{bottom:421.582500px;}
.y39{bottom:423.325500px;}
.y4{bottom:423.453000px;}
.y6b{bottom:423.835500px;}
.y8f{bottom:424.006500px;}
.y47{bottom:426.345000px;}
.y102{bottom:426.472500px;}
.yb5{bottom:429.066000px;}
.y30{bottom:429.108000px;}
.ye5{bottom:433.317000px;}
.yf3{bottom:433.360500px;}
.y59{bottom:434.040000px;}
.y4b{bottom:434.466000px;}
.y11d{bottom:435.528000px;}
.y6a{bottom:438.972000px;}
.ya3{bottom:445.350000px;}
.yf0{bottom:446.371500px;}
.y38{bottom:449.389500px;}
.y1f{bottom:453.939000px;}
.y69{bottom:454.110000px;}
.y8e{bottom:454.279500px;}
.y46{bottom:456.576000px;}
.y11{bottom:459.466500px;}
.yb4{bottom:462.528000px;}
.y2f{bottom:462.571500px;}
.y10d{bottom:462.783000px;}
.yaf{bottom:464.187000px;}
.y2a{bottom:464.229000px;}
.y58{bottom:464.272500px;}
.y11c{bottom:468.991500px;}
.y8d{bottom:469.417500px;}
.y17{bottom:473.668500px;}
.ya2{bottom:475.582500px;}
.y68{bottom:479.367000px;}
.yfc{bottom:479.877000px;}
.y4a{bottom:481.960500px;}
.y8c{bottom:484.554000px;}
.y45{bottom:486.807000px;}
.yda{bottom:488.167500px;}
.ye2{bottom:489.741000px;}
.yef{bottom:489.783000px;}
.y10c{bottom:496.246500px;}
.yae{bottom:497.650500px;}
.y29{bottom:497.692500px;}
.y8b{bottom:499.690500px;}
.y101{bottom:501.561000px;}
.y11b{bottom:502.455000px;}
.y37{bottom:503.262000px;}
.y57{bottom:503.305500px;}
.y67{bottom:504.622500px;}
.y1e{bottom:505.686000px;}
.ya1{bottom:505.813500px;}
.y49{bottom:507.514500px;}
.y8a{bottom:514.828500px;}
.y16{bottom:517.251000px;}
.y44{bottom:517.591500px;}
.y10b{bottom:529.710000px;}
.y66{bottom:529.879500px;}
.y89{bottom:529.965000px;}
.y48{bottom:533.068500px;}
.y10{bottom:535.024500px;}
.ya0{bottom:536.598000px;}
.y88{bottom:545.101500px;}
.y65{bottom:555.136500px;}
.y11a{bottom:557.178000px;}
.y87{bottom:560.239500px;}
.y64{bottom:570.273000px;}
.y86{bottom:575.376000px;}
.y63{bottom:585.411000px;}
.y85{bottom:590.512500px;}
.y119{bottom:590.640000px;}
.y1d{bottom:594.978000px;}
.yb{bottom:595.020000px;}
.yf{bottom:595.488000px;}
.y62{bottom:600.547500px;}
.y84{bottom:620.787000px;}
.y61{bottom:625.804500px;}
.y60{bottom:651.061500px;}
.hd{height:34.919104px;}
.h3{height:39.823570px;}
.h1e{height:43.981260px;}
.ha{height:44.206195px;}
.hb{height:47.815523px;}
.h6{height:55.998325px;}
.h7{height:56.834183px;}
.h1f{height:58.334256px;}
.h1c{height:59.965356px;}
.h22{height:60.880230px;}
.h20{height:61.170876px;}
.h21{height:61.864816px;}
.h1a{height:65.193105px;}
.h1d{height:70.630066px;}
.h16{height:74.904059px;}
.he{height:78.257812px;}
.h8{height:78.626953px;}
.hf{height:79.523438px;}
.h15{height:83.421633px;}
.h18{height:87.009645px;}
.h2a{height:88.416809px;}
.h24{height:95.296254px;}
.h26{height:95.302254px;}
.h28{height:95.325633px;}
.h17{height:95.635395px;}
.h5{height:96.086505px;}
.h29{height:97.622007px;}
.h1b{height:100.116000px;}
.h12{height:104.382879px;}
.h19{height:111.312306px;}
.h10{height:113.012977px;}
.h11{height:114.840680px;}
.hc{height:121.760461px;}
.h25{height:123.729633px;}
.h23{height:141.388254px;}
.h9{height:156.515625px;}
.h27{height:178.000686px;}
.h4{height:186.705996px;}
.h14{height:200.232000px;}
.h13{height:400.464000px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x8{left:8.503500px;}
.x1{left:10.630500px;}
.x3a{left:13.776000px;}
.xc{left:21.345000px;}
.x1b{left:23.896500px;}
.x13{left:37.672500px;}
.x3{left:40.393500px;}
.x17{left:42.562500px;}
.x9{left:51.024000px;}
.x2c{left:53.490000px;}
.x30{left:55.402500px;}
.x4{left:56.764500px;}
.x2d{left:58.549500px;}
.x64{left:59.569500px;}
.x11{left:61.653000px;}
.x2{left:66.459000px;}
.x5e{left:72.325500px;}
.x20{left:74.239500px;}
.x5d{left:81.553500px;}
.x18{left:93.586500px;}
.x1d{left:103.365000px;}
.x31{left:106.426500px;}
.x61{left:123.349500px;}
.x19{left:131.853000px;}
.x1c{left:140.782500px;}
.x1e{left:214.002000px;}
.xd{left:225.736500px;}
.x3b{left:252.270000px;}
.xf{left:255.841500px;}
.x62{left:269.532000px;}
.x37{left:274.932000px;}
.x32{left:281.692500px;}
.x3c{left:289.899000px;}
.x45{left:331.356000px;}
.x43{left:339.519000px;}
.x36{left:342.751500px;}
.x44{left:345.982500px;}
.x1f{left:348.958500px;}
.x33{left:355.209000px;}
.x7{left:359.929500px;}
.x2a{left:361.969500px;}
.x23{left:404.575500px;}
.x60{left:407.041500px;}
.x24{left:425.070000px;}
.x55{left:429.321000px;}
.x2b{left:435.486000px;}
.x5{left:437.569500px;}
.x2e{left:445.648500px;}
.x46{left:451.134000px;}
.x6{left:468.057000px;}
.x47{left:470.481000px;}
.x56{left:486.085500px;}
.x21{left:490.125000px;}
.x38{left:520.356000px;}
.x3d{left:528.391500px;}
.x49{left:540.681000px;}
.x15{left:550.459500px;}
.x48{left:555.307500px;}
.x34{left:565.426500px;}
.xe{left:576.822000px;}
.x54{left:588.727500px;}
.x5f{left:604.758000px;}
.x58{left:609.094500px;}
.x2f{left:618.193500px;}
.x3e{left:625.294500px;}
.x35{left:638.943000px;}
.x25{left:640.686000px;}
.x22{left:646.725000px;}
.x4a{left:661.989000px;}
.x59{left:663.477000px;}
.x57{left:665.815500px;}
.x4b{left:681.336000px;}
.x29{left:696.004500px;}
.x26{left:748.857000px;}
.x4d{left:756.424500px;}
.x4c{left:771.052500px;}
.x5b{left:787.635000px;}
.x39{left:796.989000px;}
.x63{left:811.063500px;}
.x5a{left:819.822000px;}
.xa{left:823.648500px;}
.x3f{left:863.830500px;}
.x42{left:870.292500px;}
.xb{left:871.398000px;}
.x4e{left:877.734000px;}
.x4f{left:897.081000px;}
.x40{left:901.417500px;}
.x16{left:921.231000px;}
.x1a{left:945.169500px;}
.x51{left:972.169500px;}
.x50{left:986.797500px;}
.x12{left:1000.701000px;}
.x14{left:1001.848500px;}
.x27{left:1004.953500px;}
.x5c{left:1010.224500px;}
.x10{left:1023.448500px;}
.x28{left:1062.226500px;}
.x52{left:1093.692000px;}
.x53{left:1112.995500px;}
.x41{left:1139.910000px;}
@media print{
.v6{vertical-align:-40.970667pt;}
.v4{vertical-align:-35.829333pt;}
.v7{vertical-align:-25.248000pt;}
.v5{vertical-align:-19.802667pt;}
.v2{vertical-align:-8.912000pt;}
.v1{vertical-align:-2.421333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.912000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.106736pt;}
.ls3{letter-spacing:0.117312pt;}
.ls4{letter-spacing:0.182400pt;}
.ls5{letter-spacing:29.730133pt;}
.ls7{letter-spacing:73.889200pt;}
.ls6{letter-spacing:75.084800pt;}
.ls1{letter-spacing:82.647915pt;}
.ls2{letter-spacing:87.224587pt;}
.ws3{word-spacing:-53.184000pt;}
.ws1d{word-spacing:-41.374197pt;}
.ws13{word-spacing:-38.401803pt;}
.ws4{word-spacing:-35.469296pt;}
.wsb{word-spacing:-35.310912pt;}
.wsa{word-spacing:-35.193600pt;}
.ws8{word-spacing:-29.565872pt;}
.ws9{word-spacing:-26.592000pt;}
.wsc{word-spacing:-20.687099pt;}
.ws5{word-spacing:-20.530501pt;}
.ws2{word-spacing:-16.247712pt;}
.ws6{word-spacing:-13.316683pt;}
.ws1e{word-spacing:-0.213472pt;}
.ws0{word-spacing:-0.074683pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:47.449781pt;}
.ws7{word-spacing:59.558688pt;}
.ws12{word-spacing:145.840000pt;}
.wse{word-spacing:196.826667pt;}
.ws11{word-spacing:205.264000pt;}
.ws10{word-spacing:250.202667pt;}
.wsf{word-spacing:391.050667pt;}
.ws17{word-spacing:425.674667pt;}
.ws15{word-spacing:444.005333pt;}
.ws19{word-spacing:470.613333pt;}
.ws1b{word-spacing:485.098667pt;}
.ws18{word-spacing:697.642667pt;}
.wsd{word-spacing:876.906667pt;}
.ws14{word-spacing:895.786667pt;}
.ws16{word-spacing:1161.994667pt;}
.ws1a{word-spacing:1183.498667pt;}
._e{margin-left:-17.048021pt;}
._f{margin-left:-16.081504pt;}
._23{margin-left:-11.634224pt;}
._12{margin-left:-10.656000pt;}
._2{margin-left:-9.620021pt;}
._d{margin-left:-8.513824pt;}
._4{margin-left:-6.297781pt;}
._3{margin-left:-5.376000pt;}
._a{margin-left:-4.481680pt;}
._1{margin-left:-3.076779pt;}
._9{margin-left:-1.920000pt;}
._0{margin-left:-0.913419pt;}
._6{width:1.031979pt;}
._8{width:2.087893pt;}
._11{width:119.616000pt;}
._17{width:205.904000pt;}
._22{width:212.670603pt;}
._14{width:217.909333pt;}
._19{width:224.122667pt;}
._1b{width:232.645333pt;}
._c{width:238.848000pt;}
._13{width:240.885333pt;}
._16{width:244.522667pt;}
._18{width:250.181333pt;}
._1a{width:271.162667pt;}
._1c{width:276.794667pt;}
._15{width:279.381333pt;}
._21{width:460.309333pt;}
._1f{width:470.314667pt;}
._1d{width:496.922667pt;}
._20{width:510.954667pt;}
._1e{width:523.882667pt;}
._7{width:1061.096885pt;}
._b{width:3724.373088pt;}
._10{width:3727.845088pt;}
._5{width:3750.975755pt;}
.fsa{font-size:42.634667pt;}
.fs0{font-size:48.074667pt;}
.fs7{font-size:53.365333pt;}
.fs14{font-size:55.936000pt;}
.fs8{font-size:58.656000pt;}
.fsf{font-size:67.274667pt;}
.fs4{font-size:69.392000pt;}
.fsd{font-size:74.117333pt;}
.fs3{font-size:74.682667pt;}
.fs16{font-size:76.800000pt;}
.fs12{font-size:79.973333pt;}
.fs13{font-size:85.264000pt;}
.fs10{font-size:87.989333pt;}
.fs5{font-size:96.000000pt;}
.fs11{font-size:106.736000pt;}
.fs17{font-size:112.026667pt;}
.fs2{font-size:117.317333pt;}
.fsc{font-size:128.048000pt;}
.fsb{font-size:138.634667pt;}
.fs9{font-size:149.365333pt;}
.fs15{font-size:170.682667pt;}
.fs6{font-size:192.000000pt;}
.fs1{font-size:213.317333pt;}
.fse{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y3{bottom:7.558667pt;}
.ya{bottom:8.314667pt;}
.y83{bottom:8.844000pt;}
.y1b{bottom:9.145333pt;}
.y14{bottom:9.524000pt;}
.y15{bottom:9.940000pt;}
.yad{bottom:13.945333pt;}
.yc4{bottom:17.008000pt;}
.yd{bottom:17.158667pt;}
.y2{bottom:21.013333pt;}
.y12{bottom:21.656000pt;}
.y82{bottom:22.298667pt;}
.y18{bottom:25.170667pt;}
.y118{bottom:27.477333pt;}
.yb7{bottom:31.974667pt;}
.y32{bottom:32.012000pt;}
.yc3{bottom:33.826667pt;}
.y109{bottom:33.940000pt;}
.y81{bottom:35.753333pt;}
.y13{bottom:36.396000pt;}
.y9f{bottom:40.516000pt;}
.yac{bottom:40.818667pt;}
.ybb{bottom:41.158667pt;}
.y36{bottom:41.196000pt;}
.y27{bottom:42.368000pt;}
.y80{bottom:49.209333pt;}
.yc2{bottom:50.645333pt;}
.y9{bottom:51.362667pt;}
.y43{bottom:53.140000pt;}
.y117{bottom:57.221333pt;}
.y56{bottom:58.317333pt;}
.yed{bottom:59.942667pt;}
.yfb{bottom:59.980000pt;}
.yb6{bottom:61.718667pt;}
.y31{bottom:61.757333pt;}
.y7f{bottom:62.664000pt;}
.y9e{bottom:67.426667pt;}
.yc1{bottom:67.464000pt;}
.yab{bottom:67.690667pt;}
.yba{bottom:70.904000pt;}
.y35{bottom:70.941333pt;}
.y7e{bottom:76.118667pt;}
.y42{bottom:76.308000pt;}
.y26{bottom:80.125333pt;}
.y55{bottom:81.032000pt;}
.yc0{bottom:84.282667pt;}
.y7d{bottom:89.574667pt;}
.ye0{bottom:92.636000pt;}
.yaa{bottom:94.562667pt;}
.ybf{bottom:101.101333pt;}
.y7c{bottom:103.029333pt;}
.y54{bottom:103.748000pt;}
.y116{bottom:105.864000pt;}
.yec{bottom:106.846667pt;}
.yfa{bottom:106.884000pt;}
.y7b{bottom:116.484000pt;}
.y100{bottom:116.749333pt;}
.y8{bottom:117.126667pt;}
.y41{bottom:117.769333pt;}
.ybe{bottom:117.921333pt;}
.y25{bottom:120.490667pt;}
.ya9{bottom:121.926667pt;}
.y10a{bottom:126.046667pt;}
.yb3{bottom:126.273333pt;}
.y2e{bottom:126.312000pt;}
.y108{bottom:126.916000pt;}
.y7a{bottom:129.940000pt;}
.ybd{bottom:134.740000pt;}
.y115{bottom:135.609333pt;}
.y7{bottom:138.405333pt;}
.y40{bottom:140.938667pt;}
.y79{bottom:152.390667pt;}
.yeb{bottom:153.826667pt;}
.yf9{bottom:153.864000pt;}
.yb2{bottom:156.018667pt;}
.y2d{bottom:156.056000pt;}
.ydf{bottom:156.132000pt;}
.y24{bottom:160.856000pt;}
.ybc{bottom:164.220000pt;}
.y114{bottom:165.353333pt;}
.y53{bottom:165.466667pt;}
.y78{bottom:165.845333pt;}
.yb9{bottom:170.532000pt;}
.y34{bottom:170.569333pt;}
.y123{bottom:170.872000pt;}
.y1a{bottom:171.665333pt;}
.yff{bottom:176.125333pt;}
.y5f{bottom:177.864000pt;}
.yd7{bottom:181.530667pt;}
.y3f{bottom:182.400000pt;}
.y107{bottom:183.646667pt;}
.y52{bottom:188.182667pt;}
.y77{bottom:188.296000pt;}
.y9d{bottom:188.522667pt;}
.y6{bottom:189.921333pt;}
.y113{bottom:195.098667pt;}
.yd8{bottom:198.349333pt;}
.ya8{bottom:199.445333pt;}
.yb8{bottom:200.277333pt;}
.y33{bottom:200.314667pt;}
.y122{bottom:200.617333pt;}
.yea{bottom:200.805333pt;}
.yf8{bottom:200.844000pt;}
.y9c{bottom:201.977333pt;}
.y3e{bottom:205.568000pt;}
.y23{bottom:206.853333pt;}
.yca{bottom:209.082667pt;}
.y76{bottom:210.745333pt;}
.y51{bottom:210.897333pt;}
.yd6{bottom:215.168000pt;}
.y9b{bottom:215.432000pt;}
.yde{bottom:219.590667pt;}
.y5e{bottom:219.930667pt;}
.y75{bottom:224.201333pt;}
.y112{bottom:224.844000pt;}
.yc9{bottom:225.901333pt;}
.ya7{bottom:226.317333pt;}
.y9a{bottom:228.888000pt;}
.yd5{bottom:231.986667pt;}
.y74{bottom:237.656000pt;}
.y99{bottom:242.342667pt;}
.ycd{bottom:242.721333pt;}
.y106{bottom:245.593333pt;}
.y3d{bottom:247.029333pt;}
.y19{bottom:247.521333pt;}
.ye9{bottom:247.785333pt;}
.yf7{bottom:247.822667pt;}
.yd4{bottom:248.805333pt;}
.y1c{bottom:248.957333pt;}
.y121{bottom:249.260000pt;}
.y73{bottom:251.112000pt;}
.yb1{bottom:252.396000pt;}
.y2c{bottom:252.434667pt;}
.ya6{bottom:253.190667pt;}
.y111{bottom:254.588000pt;}
.y5d{bottom:254.853333pt;}
.y98{bottom:255.797333pt;}
.ycc{bottom:259.540000pt;}
.y72{bottom:264.566667pt;}
.yd3{bottom:265.625333pt;}
.y97{bottom:269.253333pt;}
.y3c{bottom:270.197333pt;}
.y50{bottom:272.617333pt;}
.y28{bottom:274.280000pt;}
.yfe{bottom:274.582667pt;}
.yc8{bottom:276.358667pt;}
.yc{bottom:277.568000pt;}
.y71{bottom:278.021333pt;}
.y120{bottom:279.004000pt;}
.ye{bottom:279.912000pt;}
.ya5{bottom:280.062667pt;}
.yb0{bottom:282.141333pt;}
.y2b{bottom:282.178667pt;}
.yd2{bottom:282.444000pt;}
.y96{bottom:282.708000pt;}
.ydd{bottom:283.048000pt;}
.y22{bottom:285.013333pt;}
.y5c{bottom:289.776000pt;}
.y70{bottom:291.477333pt;}
.yc7{bottom:293.177333pt;}
.ye8{bottom:294.765333pt;}
.yf6{bottom:294.802667pt;}
.y4f{bottom:295.332000pt;}
.y95{bottom:296.162667pt;}
.yd1{bottom:299.262667pt;}
.y105{bottom:302.097333pt;}
.y5{bottom:303.004000pt;}
.y110{bottom:303.230667pt;}
.ya4{bottom:307.426667pt;}
.y11f{bottom:308.749333pt;}
.y94{bottom:309.618667pt;}
.ycb{bottom:309.996000pt;}
.y3b{bottom:311.660000pt;}
.y104{bottom:312.340000pt;}
.y6f{bottom:313.926667pt;}
.yd0{bottom:316.081333pt;}
.y4e{bottom:318.046667pt;}
.y21{bottom:322.770667pt;}
.y93{bottom:323.073333pt;}
.y5b{bottom:324.472000pt;}
.yc6{bottom:326.814667pt;}
.ycf{bottom:332.900000pt;}
.y10f{bottom:332.976000pt;}
.yfd{bottom:333.958667pt;}
.y3a{bottom:334.828000pt;}
.y6e{bottom:336.377333pt;}
.y92{bottom:336.529333pt;}
.y11e{bottom:338.494667pt;}
.y4d{bottom:340.761333pt;}
.ye7{bottom:343.218667pt;}
.yf5{bottom:343.256000pt;}
.y6d{bottom:349.832000pt;}
.y91{bottom:349.984000pt;}
.ydc{bottom:350.248000pt;}
.y5a{bottom:351.344000pt;}
.ye4{bottom:353.725333pt;}
.yf2{bottom:353.762667pt;}
.yc5{bottom:354.405333pt;}
.yce{bottom:362.380000pt;}
.y10e{bottom:362.721333pt;}
.yd9{bottom:362.948000pt;}
.y20{bottom:363.136000pt;}
.y6c{bottom:363.288000pt;}
.y90{bottom:363.438667pt;}
.y4c{bottom:363.477333pt;}
.ye6{bottom:364.194667pt;}
.yf4{bottom:364.232000pt;}
.ye1{bottom:368.012000pt;}
.yee{bottom:368.049333pt;}
.y103{bottom:368.844000pt;}
.ydb{bottom:371.225333pt;}
.ye3{bottom:374.701333pt;}
.yf1{bottom:374.740000pt;}
.y39{bottom:376.289333pt;}
.y4{bottom:376.402667pt;}
.y6b{bottom:376.742667pt;}
.y8f{bottom:376.894667pt;}
.y47{bottom:378.973333pt;}
.y102{bottom:379.086667pt;}
.yb5{bottom:381.392000pt;}
.y30{bottom:381.429333pt;}
.ye5{bottom:385.170667pt;}
.yf3{bottom:385.209333pt;}
.y59{bottom:385.813333pt;}
.y4b{bottom:386.192000pt;}
.y11d{bottom:387.136000pt;}
.y6a{bottom:390.197333pt;}
.ya3{bottom:395.866667pt;}
.yf0{bottom:396.774667pt;}
.y38{bottom:399.457333pt;}
.y1f{bottom:403.501333pt;}
.y69{bottom:403.653333pt;}
.y8e{bottom:403.804000pt;}
.y46{bottom:405.845333pt;}
.y11{bottom:408.414667pt;}
.yb4{bottom:411.136000pt;}
.y2f{bottom:411.174667pt;}
.y10d{bottom:411.362667pt;}
.yaf{bottom:412.610667pt;}
.y2a{bottom:412.648000pt;}
.y58{bottom:412.686667pt;}
.y11c{bottom:416.881333pt;}
.y8d{bottom:417.260000pt;}
.y17{bottom:421.038667pt;}
.ya2{bottom:422.740000pt;}
.y68{bottom:426.104000pt;}
.yfc{bottom:426.557333pt;}
.y4a{bottom:428.409333pt;}
.y8c{bottom:430.714667pt;}
.y45{bottom:432.717333pt;}
.yda{bottom:433.926667pt;}
.ye2{bottom:435.325333pt;}
.yef{bottom:435.362667pt;}
.y10c{bottom:441.108000pt;}
.yae{bottom:442.356000pt;}
.y29{bottom:442.393333pt;}
.y8b{bottom:444.169333pt;}
.y101{bottom:445.832000pt;}
.y11b{bottom:446.626667pt;}
.y37{bottom:447.344000pt;}
.y57{bottom:447.382667pt;}
.y67{bottom:448.553333pt;}
.y1e{bottom:449.498667pt;}
.ya1{bottom:449.612000pt;}
.y49{bottom:451.124000pt;}
.y8a{bottom:457.625333pt;}
.y16{bottom:459.778667pt;}
.y44{bottom:460.081333pt;}
.y10b{bottom:470.853333pt;}
.y66{bottom:471.004000pt;}
.y89{bottom:471.080000pt;}
.y48{bottom:473.838667pt;}
.y10{bottom:475.577333pt;}
.ya0{bottom:476.976000pt;}
.y88{bottom:484.534667pt;}
.y65{bottom:493.454667pt;}
.y11a{bottom:495.269333pt;}
.y87{bottom:497.990667pt;}
.y64{bottom:506.909333pt;}
.y86{bottom:511.445333pt;}
.y63{bottom:520.365333pt;}
.y85{bottom:524.900000pt;}
.y119{bottom:525.013333pt;}
.y1d{bottom:528.869333pt;}
.yb{bottom:528.906667pt;}
.yf{bottom:529.322667pt;}
.y62{bottom:533.820000pt;}
.y84{bottom:551.810667pt;}
.y61{bottom:556.270667pt;}
.y60{bottom:578.721333pt;}
.hd{height:31.039203pt;}
.h3{height:35.398729pt;}
.h1e{height:39.094453pt;}
.ha{height:39.294396pt;}
.hb{height:42.502687pt;}
.h6{height:49.776289pt;}
.h7{height:50.519273pt;}
.h1f{height:51.852672pt;}
.h1c{height:53.302539pt;}
.h22{height:54.115760pt;}
.h20{height:54.374112pt;}
.h21{height:54.990948pt;}
.h1a{height:57.949427pt;}
.h1d{height:62.782281pt;}
.h16{height:66.581385pt;}
.he{height:69.562500pt;}
.h8{height:69.890625pt;}
.hf{height:70.687500pt;}
.h15{height:74.152562pt;}
.h18{height:77.341906pt;}
.h2a{height:78.592719pt;}
.h24{height:84.707781pt;}
.h26{height:84.713115pt;}
.h28{height:84.733896pt;}
.h17{height:85.009240pt;}
.h5{height:85.410227pt;}
.h29{height:86.775117pt;}
.h1b{height:88.992000pt;}
.h12{height:92.784781pt;}
.h19{height:98.944272pt;}
.h10{height:100.455979pt;}
.h11{height:102.080604pt;}
.hc{height:108.231521pt;}
.h25{height:109.981896pt;}
.h23{height:125.678448pt;}
.h9{height:139.125000pt;}
.h27{height:158.222832pt;}
.h4{height:165.960885pt;}
.h14{height:177.984000pt;}
.h13{height:355.968000pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x8{left:7.558667pt;}
.x1{left:9.449333pt;}
.x3a{left:12.245333pt;}
.xc{left:18.973333pt;}
.x1b{left:21.241333pt;}
.x13{left:33.486667pt;}
.x3{left:35.905333pt;}
.x17{left:37.833333pt;}
.x9{left:45.354667pt;}
.x2c{left:47.546667pt;}
.x30{left:49.246667pt;}
.x4{left:50.457333pt;}
.x2d{left:52.044000pt;}
.x64{left:52.950667pt;}
.x11{left:54.802667pt;}
.x2{left:59.074667pt;}
.x5e{left:64.289333pt;}
.x20{left:65.990667pt;}
.x5d{left:72.492000pt;}
.x18{left:83.188000pt;}
.x1d{left:91.880000pt;}
.x31{left:94.601333pt;}
.x61{left:109.644000pt;}
.x19{left:117.202667pt;}
.x1c{left:125.140000pt;}
.x1e{left:190.224000pt;}
.xd{left:200.654667pt;}
.x3b{left:224.240000pt;}
.xf{left:227.414667pt;}
.x62{left:239.584000pt;}
.x37{left:244.384000pt;}
.x32{left:250.393333pt;}
.x3c{left:257.688000pt;}
.x45{left:294.538667pt;}
.x43{left:301.794667pt;}
.x36{left:304.668000pt;}
.x44{left:307.540000pt;}
.x1f{left:310.185333pt;}
.x33{left:315.741333pt;}
.x7{left:319.937333pt;}
.x2a{left:321.750667pt;}
.x23{left:359.622667pt;}
.x60{left:361.814667pt;}
.x24{left:377.840000pt;}
.x55{left:381.618667pt;}
.x2b{left:387.098667pt;}
.x5{left:388.950667pt;}
.x2e{left:396.132000pt;}
.x46{left:401.008000pt;}
.x6{left:416.050667pt;}
.x47{left:418.205333pt;}
.x56{left:432.076000pt;}
.x21{left:435.666667pt;}
.x38{left:462.538667pt;}
.x3d{left:469.681333pt;}
.x49{left:480.605333pt;}
.x15{left:489.297333pt;}
.x48{left:493.606667pt;}
.x34{left:502.601333pt;}
.xe{left:512.730667pt;}
.x54{left:523.313333pt;}
.x5f{left:537.562667pt;}
.x58{left:541.417333pt;}
.x2f{left:549.505333pt;}
.x3e{left:555.817333pt;}
.x35{left:567.949333pt;}
.x25{left:569.498667pt;}
.x22{left:574.866667pt;}
.x4a{left:588.434667pt;}
.x59{left:589.757333pt;}
.x57{left:591.836000pt;}
.x4b{left:605.632000pt;}
.x29{left:618.670667pt;}
.x26{left:665.650667pt;}
.x4d{left:672.377333pt;}
.x4c{left:685.380000pt;}
.x5b{left:700.120000pt;}
.x39{left:708.434667pt;}
.x63{left:720.945333pt;}
.x5a{left:728.730667pt;}
.xa{left:732.132000pt;}
.x3f{left:767.849333pt;}
.x42{left:773.593333pt;}
.xb{left:774.576000pt;}
.x4e{left:780.208000pt;}
.x4f{left:797.405333pt;}
.x40{left:801.260000pt;}
.x16{left:818.872000pt;}
.x1a{left:840.150667pt;}
.x51{left:864.150667pt;}
.x50{left:877.153333pt;}
.x12{left:889.512000pt;}
.x14{left:890.532000pt;}
.x27{left:893.292000pt;}
.x5c{left:897.977333pt;}
.x10{left:909.732000pt;}
.x28{left:944.201333pt;}
.x52{left:972.170667pt;}
.x53{left:989.329333pt;}
.x41{left:1013.253333pt;}
}




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