
    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_af062c6a16da797f3de5fd39.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_32a693a879baf725dc25faa0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_47638d0c5ae8b48338de4b8c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_82207715791cc58061302f27.woff')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_51a1f800c02fcda280cccb8a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_e98cd6c2a8833b5910201d54.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_5a7d64cea572765af4136770.woff')format("woff");}.ff7{font-family:ff7;line-height:1.059082;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_eb598b5dc94019aa5bb7cce1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_0f17abc8aab759c5e51f80a8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0eab885d6914e30555d226fc.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7376f62e72f7a8bc12f42ba1.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_04c1c3315a31a23913930754.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-74.880000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.924000px;}
.ls9{letter-spacing:-0.804000px;}
.lsd{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.252000px;}
.lsa{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.085200px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.ls18{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.292200px;}
.ls13{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.792000px;}
.ls19{letter-spacing:10.440000px;}
.ls17{letter-spacing:15.300000px;}
.ls12{letter-spacing:25.308000px;}
.ls1{letter-spacing:34.740000px;}
.ls11{letter-spacing:52.668000px;}
.ls0{letter-spacing:1064.460000px;}
.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:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.wsd{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.824000px;}
.ws10{word-spacing:-13.680000px;}
.ws12{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.374000px;}
.ws9{word-spacing:-13.284000px;}
.wsc{word-spacing:-13.248000px;}
.wse{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.798000px;}
.ws7{word-spacing:-10.905000px;}
.ws6{word-spacing:-10.527600px;}
.ws2{word-spacing:-9.978240px;}
.ws8{word-spacing:-9.808800px;}
.ws4{word-spacing:-9.792000px;}
.ws5{word-spacing:0.000000px;}
._48{margin-left:-5.479680px;}
._42{margin-left:-4.266000px;}
._5{margin-left:-2.502000px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._7{width:2.268000px;}
._8{width:3.355920px;}
._6{width:4.464000px;}
._c{width:5.832000px;}
._9{width:6.858000px;}
._a{width:8.154000px;}
._b{width:9.720000px;}
._d{width:10.733040px;}
._14{width:11.988000px;}
._10{width:15.390000px;}
._18{width:16.578000px;}
._1c{width:18.036000px;}
._13{width:19.170000px;}
._4{width:20.527680px;}
._12{width:22.086000px;}
._11{width:23.328000px;}
._1b{width:24.416640px;}
._15{width:25.488000px;}
._1a{width:26.555040px;}
._1e{width:28.242000px;}
._1d{width:29.646000px;}
._20{width:30.673440px;}
._3{width:31.810320px;}
._17{width:33.048000px;}
._21{width:34.128000px;}
._16{width:35.316000px;}
._25{width:36.396000px;}
._22{width:37.800000px;}
._19{width:38.826000px;}
._24{width:40.446000px;}
._23{width:41.580000px;}
._32{width:42.588000px;}
._49{width:43.623360px;}
._f{width:44.663040px;}
._e{width:45.738000px;}
._1f{width:46.764000px;}
._34{width:48.460320px;}
._30{width:49.707360px;}
._2d{width:50.904000px;}
._2a{width:52.866000px;}
._2b{width:54.090000px;}
._3d{width:55.134000px;}
._27{width:57.078000px;}
._26{width:58.158000px;}
._3c{width:60.858000px;}
._3a{width:62.050320px;}
._3b{width:63.331680px;}
._28{width:66.312000px;}
._29{width:67.707360px;}
._35{width:69.822000px;}
._37{width:78.516000px;}
._36{width:80.172000px;}
._3e{width:82.020000px;}
._47{width:91.260000px;}
._33{width:94.068000px;}
._39{width:109.682640px;}
._38{width:110.754000px;}
._2f{width:116.640000px;}
._41{width:126.059040px;}
._2c{width:128.250000px;}
._40{width:129.600000px;}
._45{width:148.446000px;}
._4b{width:162.486000px;}
._4c{width:199.746000px;}
._2e{width:207.360000px;}
._43{width:228.150000px;}
._44{width:229.716000px;}
._4d{width:266.220000px;}
._3f{width:316.116000px;}
._31{width:346.692000px;}
._4a{width:363.042000px;}
._2{width:432.814560px;}
._46{width:983.880000px;}
.fc8{color:rgb(31,73,125);}
.fc7{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y22{bottom:5.580000px;}
.y25{bottom:7.740000px;}
.y24{bottom:25.560000px;}
.y21{bottom:32.580000px;}
.y20{bottom:50.400000px;}
.y64{bottom:58.500000px;}
.y14{bottom:67.680000px;}
.y1f{bottom:68.220000px;}
.y4{bottom:77.220000px;}
.y1e{bottom:86.040000px;}
.y49{bottom:91.980000px;}
.y13{bottom:94.680000px;}
.y1b2{bottom:96.300000px;}
.y165{bottom:97.200000px;}
.ya0{bottom:98.100000px;}
.y1d{bottom:103.860000px;}
.y114{bottom:104.040000px;}
.y6{bottom:105.120000px;}
.y189{bottom:105.840000px;}
.yf1{bottom:107.100000px;}
.y62{bottom:109.800000px;}
.y48{bottom:109.980000px;}
.y1b1{bottom:114.300000px;}
.y142{bottom:115.200000px;}
.y9f{bottom:116.100000px;}
.y12{bottom:121.545000px;}
.y1c{bottom:121.725000px;}
.y113{bottom:121.860000px;}
.y188{bottom:123.660000px;}
.yf0{bottom:125.100000px;}
.y61{bottom:127.620000px;}
.y47{bottom:127.800000px;}
.y1c8{bottom:132.660000px;}
.y164{bottom:133.020000px;}
.y141{bottom:133.200000px;}
.y9e{bottom:133.920000px;}
.y1b{bottom:139.725000px;}
.y1b0{bottom:141.120000px;}
.yef{bottom:142.920000px;}
.y60{bottom:145.440000px;}
.y46{bottom:145.620000px;}
.y11{bottom:148.005000px;}
.y112{bottom:148.680000px;}
.y187{bottom:150.660000px;}
.y172{bottom:151.020000px;}
.y9d{bottom:151.740000px;}
.y1a{bottom:157.545000px;}
.y1af{bottom:158.940000px;}
.y163{bottom:159.840000px;}
.y140{bottom:160.020000px;}
.yee{bottom:160.740000px;}
.y5f{bottom:163.260000px;}
.y45{bottom:163.440000px;}
.y111{bottom:166.500000px;}
.y186{bottom:168.480000px;}
.y171{bottom:168.840000px;}
.y9c{bottom:169.560000px;}
.y10{bottom:174.825000px;}
.y19{bottom:175.365000px;}
.y1ae{bottom:176.760000px;}
.y162{bottom:177.660000px;}
.y13f{bottom:177.840000px;}
.yed{bottom:178.560000px;}
.y44{bottom:181.260000px;}
.y110{bottom:184.320000px;}
.y185{bottom:186.300000px;}
.ybc{bottom:187.380000px;}
.y18{bottom:193.185000px;}
.y1ad{bottom:194.580000px;}
.y1c7{bottom:195.300000px;}
.y161{bottom:195.480000px;}
.y13e{bottom:195.660000px;}
.y9b{bottom:196.380000px;}
.y5e{bottom:199.080000px;}
.y43{bottom:199.260000px;}
.yf{bottom:202.005000px;}
.y10f{bottom:202.320000px;}
.ycf{bottom:205.200000px;}
.y17{bottom:211.005000px;}
.y184{bottom:213.150000px;}
.y160{bottom:213.510000px;}
.y9a{bottom:214.230000px;}
.y5d{bottom:216.930000px;}
.y42{bottom:217.110000px;}
.y10e{bottom:220.170000px;}
.y1ac{bottom:221.610000px;}
.y13d{bottom:222.510000px;}
.yce{bottom:223.230000px;}
.ye{bottom:228.645000px;}
.y16{bottom:229.005000px;}
.y183{bottom:230.970000px;}
.y99{bottom:232.230000px;}
.y5c{bottom:234.750000px;}
.y41{bottom:234.930000px;}
.y10d{bottom:237.990000px;}
.y1ab{bottom:239.430000px;}
.y15f{bottom:240.330000px;}
.y13c{bottom:240.510000px;}
.ycd{bottom:241.050000px;}
.yd{bottom:246.465000px;}
.y15{bottom:246.825000px;}
.y182{bottom:248.970000px;}
.y98{bottom:250.050000px;}
.y5b{bottom:252.570000px;}
.y40{bottom:252.750000px;}
.y1aa{bottom:257.250000px;}
.y1c6{bottom:257.790000px;}
.y15e{bottom:258.150000px;}
.y13b{bottom:258.330000px;}
.yea{bottom:258.870000px;}
.y10c{bottom:264.810000px;}
.ycc{bottom:267.510000px;}
.y97{bottom:267.870000px;}
.y5a{bottom:270.390000px;}
.y3f{bottom:270.570000px;}
.y181{bottom:275.790000px;}
.y15d{bottom:275.970000px;}
.y170{bottom:276.150000px;}
.ye9{bottom:276.690000px;}
.yec{bottom:276.870000px;}
.y10b{bottom:282.630000px;}
.y1a9{bottom:284.070000px;}
.y13a{bottom:285.150000px;}
.y96{bottom:285.690000px;}
.y3e{bottom:288.390000px;}
.y180{bottom:293.610000px;}
.y15c{bottom:293.790000px;}
.y16f{bottom:293.970000px;}
.ye8{bottom:294.510000px;}
.ycb{bottom:294.690000px;}
.y10a{bottom:300.450000px;}
.y1a8{bottom:301.890000px;}
.y139{bottom:302.970000px;}
.y95{bottom:303.510000px;}
.y59{bottom:306.210000px;}
.y3d{bottom:306.390000px;}
.y17f{bottom:311.430000px;}
.yca{bottom:312.510000px;}
.y109{bottom:318.450000px;}
.y1a7{bottom:319.710000px;}
.y1c5{bottom:320.430000px;}
.y15b{bottom:320.610000px;}
.y138{bottom:320.790000px;}
.y94{bottom:321.510000px;}
.y58{bottom:324.030000px;}
.y3c{bottom:324.210000px;}
.ye7{bottom:330.330000px;}
.yc9{bottom:330.510000px;}
.y108{bottom:336.270000px;}
.y17e{bottom:338.250000px;}
.y137{bottom:338.610000px;}
.y93{bottom:339.330000px;}
.y57{bottom:341.850000px;}
.y3b{bottom:342.030000px;}
.y1a6{bottom:346.710000px;}
.ye6{bottom:348.150000px;}
.yc8{bottom:348.330000px;}
.y17d{bottom:356.070000px;}
.y136{bottom:356.610000px;}
.y92{bottom:357.150000px;}
.y56{bottom:359.670000px;}
.y3a{bottom:359.850000px;}
.y107{bottom:364.530000px;}
.y15a{bottom:365.430000px;}
.yc7{bottom:366.150000px;}
.y17c{bottom:374.070000px;}
.y16e{bottom:374.430000px;}
.y91{bottom:374.970000px;}
.y39{bottom:377.670000px;}
.y1a5{bottom:382.350000px;}
.y1c4{bottom:383.070000px;}
.y159{bottom:383.250000px;}
.y135{bottom:383.430000px;}
.yc6{bottom:383.970000px;}
.y55{bottom:386.310000px;}
.y17b{bottom:391.890000px;}
.y90{bottom:392.790000px;}
.y106{bottom:395.850000px;}
.y1c3{bottom:400.890000px;}
.y158{bottom:401.070000px;}
.y134{bottom:401.250000px;}
.yc5{bottom:401.790000px;}
.y38{bottom:404.670000px;}
.y1a4{bottom:409.170000px;}
.y8f{bottom:410.610000px;}
.y54{bottom:413.490000px;}
.y105{bottom:413.670000px;}
.y17a{bottom:418.710000px;}
.y16d{bottom:419.070000px;}
.yc4{bottom:419.610000px;}
.y37{bottom:422.490000px;}
.y1a3{bottom:426.990000px;}
.y157{bottom:427.890000px;}
.y133{bottom:428.070000px;}
.y8e{bottom:428.610000px;}
.y53{bottom:431.310000px;}
.y104{bottom:431.670000px;}
.y179{bottom:436.530000px;}
.ybb{bottom:437.610000px;}
.y36{bottom:440.310000px;}
.y1a2{bottom:444.855000px;}
.y1c2{bottom:445.575000px;}
.y132{bottom:445.935000px;}
.y8d{bottom:446.475000px;}
.y52{bottom:449.175000px;}
.y103{bottom:449.535000px;}
.y178{bottom:454.395000px;}
.yba{bottom:455.475000px;}
.y35{bottom:458.175000px;}
.y1c1{bottom:463.395000px;}
.y131{bottom:463.935000px;}
.ye5{bottom:464.295000px;}
.y51{bottom:466.995000px;}
.y102{bottom:467.355000px;}
.y1a1{bottom:471.855000px;}
.y156{bottom:472.755000px;}
.y8c{bottom:472.935000px;}
.yb9{bottom:473.295000px;}
.y34{bottom:475.995000px;}
.y177{bottom:481.395000px;}
.y16c{bottom:481.755000px;}
.ye4{bottom:482.115000px;}
.yc3{bottom:482.295000px;}
.y50{bottom:484.815000px;}
.y101{bottom:485.175000px;}
.y1a0{bottom:489.675000px;}
.y1c0{bottom:490.215000px;}
.y155{bottom:490.575000px;}
.y130{bottom:490.755000px;}
.yb8{bottom:491.115000px;}
.y33{bottom:493.815000px;}
.y176{bottom:499.215000px;}
.ye3{bottom:499.935000px;}
.y8b{bottom:500.115000px;}
.y4f{bottom:502.815000px;}
.y100{bottom:502.995000px;}
.y19f{bottom:507.495000px;}
.y1bf{bottom:508.215000px;}
.y154{bottom:508.395000px;}
.y12f{bottom:508.575000px;}
.yb7{bottom:508.935000px;}
.y32{bottom:511.815000px;}
.y8a{bottom:517.935000px;}
.y4e{bottom:520.635000px;}
.yff{bottom:520.815000px;}
.y12e{bottom:526.395000px;}
.yb6{bottom:526.935000px;}
.y31{bottom:529.635000px;}
.y19e{bottom:534.315000px;}
.y1be{bottom:535.035000px;}
.y153{bottom:535.215000px;}
.ye2{bottom:535.755000px;}
.y89{bottom:535.935000px;}
.y4d{bottom:538.455000px;}
.yfe{bottom:538.815000px;}
.y16b{bottom:544.215000px;}
.y175{bottom:544.395000px;}
.yb5{bottom:544.755000px;}
.y30{bottom:547.455000px;}
.y19d{bottom:552.135000px;}
.y1bd{bottom:552.855000px;}
.y152{bottom:553.035000px;}
.y12d{bottom:553.215000px;}
.yf4{bottom:553.575000px;}
.y88{bottom:553.755000px;}
.y4c{bottom:556.275000px;}
.yfd{bottom:556.635000px;}
.y16a{bottom:562.035000px;}
.y174{bottom:562.215000px;}
.yb4{bottom:562.575000px;}
.y2f{bottom:565.275000px;}
.y1bc{bottom:570.675000px;}
.y12c{bottom:571.035000px;}
.y87{bottom:571.575000px;}
.y4b{bottom:574.095000px;}
.yfc{bottom:574.455000px;}
.y19c{bottom:579.135000px;}
.yb3{bottom:580.395000px;}
.y2e{bottom:583.095000px;}
.y151{bottom:588.855000px;}
.y12b{bottom:589.035000px;}
.y86{bottom:589.395000px;}
.y4a{bottom:592.095000px;}
.yfb{bottom:592.275000px;}
.y19b{bottom:596.955000px;}
.y1bb{bottom:597.495000px;}
.yb2{bottom:598.215000px;}
.y2d{bottom:601.095000px;}
.y12a{bottom:606.855000px;}
.y85{bottom:607.215000px;}
.yfa{bottom:610.095000px;}
.y19a{bottom:614.775000px;}
.y1ba{bottom:615.495000px;}
.y150{bottom:615.675000px;}
.yb1{bottom:616.035000px;}
.y2c{bottom:618.915000px;}
.y169{bottom:624.675000px;}
.y84{bottom:625.035000px;}
.yf9{bottom:628.095000px;}
.y1b9{bottom:633.315000px;}
.y14f{bottom:633.495000px;}
.y129{bottom:633.675000px;}
.yb0{bottom:634.035000px;}
.y2b{bottom:636.735000px;}
.y199{bottom:641.595000px;}
.y168{bottom:642.495000px;}
.y83{bottom:643.035000px;}
.yf8{bottom:645.915000px;}
.y1b8{bottom:651.135000px;}
.y128{bottom:651.495000px;}
.ye1{bottom:651.855000px;}
.y2a{bottom:654.555000px;}
.y198{bottom:659.415000px;}
.y14e{bottom:660.315000px;}
.yaf{bottom:660.495000px;}
.y82{bottom:660.855000px;}
.yf7{bottom:663.735000px;}
.y127{bottom:669.315000px;}
.ye0{bottom:669.675000px;}
.y29{bottom:672.375000px;}
.y197{bottom:677.265000px;}
.y1b7{bottom:677.985000px;}
.y14d{bottom:678.165000px;}
.y81{bottom:678.705000px;}
.y126{bottom:687.165000px;}
.ydf{bottom:687.525000px;}
.yae{bottom:687.705000px;}
.y28{bottom:690.225000px;}
.yf6{bottom:692.025000px;}
.y196{bottom:695.265000px;}
.y1b6{bottom:695.805000px;}
.y14c{bottom:696.165000px;}
.y80{bottom:696.525000px;}
.y167{bottom:705.165000px;}
.yde{bottom:705.345000px;}
.yad{bottom:705.525000px;}
.y27{bottom:708.225000px;}
.y1b5{bottom:713.625000px;}
.y125{bottom:714.165000px;}
.y7f{bottom:714.345000px;}
.y195{bottom:722.445000px;}
.y14b{bottom:722.985000px;}
.ydd{bottom:723.165000px;}
.yac{bottom:723.345000px;}
.y26{bottom:727.485000px;}
.y1b4{bottom:731.625000px;}
.y124{bottom:731.985000px;}
.y7e{bottom:732.165000px;}
.y194{bottom:740.265000px;}
.y1d9{bottom:740.625000px;}
.y14a{bottom:740.805000px;}
.yab{bottom:741.165000px;}
.y123{bottom:749.805000px;}
.y7d{bottom:750.165000px;}
.y23{bottom:753.945000px;}
.y193{bottom:758.265000px;}
.y1d8{bottom:758.445000px;}
.y149{bottom:758.625000px;}
.ydc{bottom:758.985000px;}
.yaa{bottom:759.165000px;}
.y122{bottom:767.625000px;}
.y7c{bottom:767.985000px;}
.y192{bottom:776.265000px;}
.y1b3{bottom:776.625000px;}
.ydb{bottom:776.805000px;}
.ya9{bottom:776.985000px;}
.y1d7{bottom:785.265000px;}
.y121{bottom:785.445000px;}
.y7b{bottom:785.805000px;}
.y191{bottom:794.265000px;}
.y1cb{bottom:794.445000px;}
.yf3{bottom:794.625000px;}
.ya8{bottom:794.805000px;}
.yc{bottom:801.465000px;}
.y1d6{bottom:803.085000px;}
.y148{bottom:803.445000px;}
.yc2{bottom:803.625000px;}
.y190{bottom:812.265000px;}
.y120{bottom:812.445000px;}
.y7a{bottom:812.625000px;}
.y1d5{bottom:820.905000px;}
.yf2{bottom:821.085000px;}
.y147{bottom:821.265000px;}
.yc1{bottom:821.445000px;}
.y11f{bottom:830.265000px;}
.y79{bottom:830.445000px;}
.y1d4{bottom:838.905000px;}
.y146{bottom:839.085000px;}
.yc0{bottom:839.445000px;}
.y11e{bottom:848.085000px;}
.y78{bottom:848.445000px;}
.y18f{bottom:856.905000px;}
.ybf{bottom:857.265000px;}
.y1d3{bottom:865.725000px;}
.y145{bottom:865.905000px;}
.y77{bottom:866.265000px;}
.y18e{bottom:874.725000px;}
.y11d{bottom:874.905000px;}
.ybe{bottom:875.085000px;}
.y1d2{bottom:883.545000px;}
.y144{bottom:883.725000px;}
.y76{bottom:884.085000px;}
.y11c{bottom:892.725000px;}
.ybd{bottom:892.905000px;}
.y1d1{bottom:901.365000px;}
.y143{bottom:901.545000px;}
.y75{bottom:901.905000px;}
.y11b{bottom:910.545000px;}
.yda{bottom:910.770000px;}
.y1d0{bottom:919.230000px;}
.y18d{bottom:919.590000px;}
.y74{bottom:919.770000px;}
.yd9{bottom:928.590000px;}
.y73{bottom:937.590000px;}
.y1cf{bottom:946.050000px;}
.y11a{bottom:946.410000px;}
.yd8{bottom:946.590000px;}
.y166{bottom:955.410000px;}
.y72{bottom:955.590000px;}
.y1ce{bottom:964.050000px;}
.y173{bottom:964.230000px;}
.yd7{bottom:964.410000px;}
.y119{bottom:973.230000px;}
.y71{bottom:973.410000px;}
.y1cd{bottom:981.870000px;}
.y18c{bottom:982.050000px;}
.yd6{bottom:982.230000px;}
.yf5{bottom:982.410000px;}
.y118{bottom:991.050000px;}
.y70{bottom:991.230000px;}
.yd5{bottom:1000.050000px;}
.yeb{bottom:1000.230000px;}
.y117{bottom:1008.870000px;}
.y6f{bottom:1009.050000px;}
.yd4{bottom:1017.870000px;}
.ya7{bottom:1018.050000px;}
.y6e{bottom:1026.870000px;}
.y1cc{bottom:1027.050000px;}
.ya6{bottom:1035.870000px;}
.y18b{bottom:1044.690000px;}
.y6d{bottom:1044.870000px;}
.yd3{bottom:1053.690000px;}
.ya5{bottom:1053.870000px;}
.y6c{bottom:1062.690000px;}
.yd2{bottom:1071.510000px;}
.ya4{bottom:1071.690000px;}
.yb{bottom:1075.830000px;}
.y6b{bottom:1080.510000px;}
.yd1{bottom:1089.330000px;}
.ya3{bottom:1089.510000px;}
.y6a{bottom:1098.330000px;}
.ya{bottom:1102.290000px;}
.y18a{bottom:1107.150000px;}
.ya2{bottom:1107.330000px;}
.y5{bottom:1112.940000px;}
.yd0{bottom:1115.790000px;}
.y69{bottom:1116.150000px;}
.ya1{bottom:1125.150000px;}
.y9{bottom:1132.350000px;}
.y116{bottom:1133.970000px;}
.y68{bottom:1142.970000px;}
.y115{bottom:1152.000000px;}
.y67{bottom:1161.000000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y1ca{bottom:1169.820000px;}
.y66{bottom:1178.820000px;}
.y2{bottom:1181.520000px;}
.y1c9{bottom:1187.640000px;}
.y7{bottom:1191.240000px;}
.y65{bottom:1196.640000px;}
.y1{bottom:1196.820000px;}
.y63{bottom:1224.540000px;}
.h11{height:39.049805px;}
.h12{height:40.843828px;}
.h17{height:44.507812px;}
.he{height:46.800000px;}
.h5{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h14{height:52.971680px;}
.hb{height:52.998047px;}
.h16{height:53.868164px;}
.hd{height:54.421875px;}
.h13{height:55.503491px;}
.h15{height:56.214844px;}
.h2{height:58.651172px;}
.h10{height:59.092031px;}
.ha{height:60.041250px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.hf{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:268.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w3{width:211.933500px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.xf{left:55.440000px;}
.x9{left:69.481500px;}
.x15{left:81.000000px;}
.xc{left:95.256000px;}
.x14{left:108.036000px;}
.x6{left:134.676000px;}
.xb{left:282.315000px;}
.x8{left:355.575000px;}
.x7{left:357.015000px;}
.x11{left:438.195000px;}
.xd{left:473.505000px;}
.x12{left:500.505000px;}
.xe{left:514.725000px;}
.x13{left:527.505000px;}
.x10{left:680.550000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.821333pt;}
.ls9{letter-spacing:-0.714667pt;}
.lsd{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.224000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.075733pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.ls18{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.259733pt;}
.ls13{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.704000pt;}
.ls19{letter-spacing:9.280000pt;}
.ls17{letter-spacing:13.600000pt;}
.ls12{letter-spacing:22.496000pt;}
.ls1{letter-spacing:30.880000pt;}
.ls11{letter-spacing:46.816000pt;}
.ls0{letter-spacing:946.186667pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.wsd{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.288000pt;}
.ws10{word-spacing:-12.160000pt;}
.ws12{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.888000pt;}
.ws9{word-spacing:-11.808000pt;}
.wsc{word-spacing:-11.776000pt;}
.wse{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.376000pt;}
.ws7{word-spacing:-9.693333pt;}
.ws6{word-spacing:-9.357867pt;}
.ws2{word-spacing:-8.869547pt;}
.ws8{word-spacing:-8.718933pt;}
.ws4{word-spacing:-8.704000pt;}
.ws5{word-spacing:0.000000pt;}
._48{margin-left:-4.870827pt;}
._42{margin-left:-3.792000pt;}
._5{margin-left:-2.224000pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._7{width:2.016000pt;}
._8{width:2.983040pt;}
._6{width:3.968000pt;}
._c{width:5.184000pt;}
._9{width:6.096000pt;}
._a{width:7.248000pt;}
._b{width:8.640000pt;}
._d{width:9.540480pt;}
._14{width:10.656000pt;}
._10{width:13.680000pt;}
._18{width:14.736000pt;}
._1c{width:16.032000pt;}
._13{width:17.040000pt;}
._4{width:18.246827pt;}
._12{width:19.632000pt;}
._11{width:20.736000pt;}
._1b{width:21.703680pt;}
._15{width:22.656000pt;}
._1a{width:23.604480pt;}
._1e{width:25.104000pt;}
._1d{width:26.352000pt;}
._20{width:27.265280pt;}
._3{width:28.275840pt;}
._17{width:29.376000pt;}
._21{width:30.336000pt;}
._16{width:31.392000pt;}
._25{width:32.352000pt;}
._22{width:33.600000pt;}
._19{width:34.512000pt;}
._24{width:35.952000pt;}
._23{width:36.960000pt;}
._32{width:37.856000pt;}
._49{width:38.776320pt;}
._f{width:39.700480pt;}
._e{width:40.656000pt;}
._1f{width:41.568000pt;}
._34{width:43.075840pt;}
._30{width:44.184320pt;}
._2d{width:45.248000pt;}
._2a{width:46.992000pt;}
._2b{width:48.080000pt;}
._3d{width:49.008000pt;}
._27{width:50.736000pt;}
._26{width:51.696000pt;}
._3c{width:54.096000pt;}
._3a{width:55.155840pt;}
._3b{width:56.294827pt;}
._28{width:58.944000pt;}
._29{width:60.184320pt;}
._35{width:62.064000pt;}
._37{width:69.792000pt;}
._36{width:71.264000pt;}
._3e{width:72.906667pt;}
._47{width:81.120000pt;}
._33{width:83.616000pt;}
._39{width:97.495680pt;}
._38{width:98.448000pt;}
._2f{width:103.680000pt;}
._41{width:112.052480pt;}
._2c{width:114.000000pt;}
._40{width:115.200000pt;}
._45{width:131.952000pt;}
._4b{width:144.432000pt;}
._4c{width:177.552000pt;}
._2e{width:184.320000pt;}
._43{width:202.800000pt;}
._44{width:204.192000pt;}
._4d{width:236.640000pt;}
._3f{width:280.992000pt;}
._31{width:308.170667pt;}
._4a{width:322.704000pt;}
._2{width:384.724053pt;}
._46{width:874.560000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:4.960000pt;}
.y25{bottom:6.880000pt;}
.y24{bottom:22.720000pt;}
.y21{bottom:28.960000pt;}
.y20{bottom:44.800000pt;}
.y64{bottom:52.000000pt;}
.y14{bottom:60.160000pt;}
.y1f{bottom:60.640000pt;}
.y4{bottom:68.640000pt;}
.y1e{bottom:76.480000pt;}
.y49{bottom:81.760000pt;}
.y13{bottom:84.160000pt;}
.y1b2{bottom:85.600000pt;}
.y165{bottom:86.400000pt;}
.ya0{bottom:87.200000pt;}
.y1d{bottom:92.320000pt;}
.y114{bottom:92.480000pt;}
.y6{bottom:93.440000pt;}
.y189{bottom:94.080000pt;}
.yf1{bottom:95.200000pt;}
.y62{bottom:97.600000pt;}
.y48{bottom:97.760000pt;}
.y1b1{bottom:101.600000pt;}
.y142{bottom:102.400000pt;}
.y9f{bottom:103.200000pt;}
.y12{bottom:108.040000pt;}
.y1c{bottom:108.200000pt;}
.y113{bottom:108.320000pt;}
.y188{bottom:109.920000pt;}
.yf0{bottom:111.200000pt;}
.y61{bottom:113.440000pt;}
.y47{bottom:113.600000pt;}
.y1c8{bottom:117.920000pt;}
.y164{bottom:118.240000pt;}
.y141{bottom:118.400000pt;}
.y9e{bottom:119.040000pt;}
.y1b{bottom:124.200000pt;}
.y1b0{bottom:125.440000pt;}
.yef{bottom:127.040000pt;}
.y60{bottom:129.280000pt;}
.y46{bottom:129.440000pt;}
.y11{bottom:131.560000pt;}
.y112{bottom:132.160000pt;}
.y187{bottom:133.920000pt;}
.y172{bottom:134.240000pt;}
.y9d{bottom:134.880000pt;}
.y1a{bottom:140.040000pt;}
.y1af{bottom:141.280000pt;}
.y163{bottom:142.080000pt;}
.y140{bottom:142.240000pt;}
.yee{bottom:142.880000pt;}
.y5f{bottom:145.120000pt;}
.y45{bottom:145.280000pt;}
.y111{bottom:148.000000pt;}
.y186{bottom:149.760000pt;}
.y171{bottom:150.080000pt;}
.y9c{bottom:150.720000pt;}
.y10{bottom:155.400000pt;}
.y19{bottom:155.880000pt;}
.y1ae{bottom:157.120000pt;}
.y162{bottom:157.920000pt;}
.y13f{bottom:158.080000pt;}
.yed{bottom:158.720000pt;}
.y44{bottom:161.120000pt;}
.y110{bottom:163.840000pt;}
.y185{bottom:165.600000pt;}
.ybc{bottom:166.560000pt;}
.y18{bottom:171.720000pt;}
.y1ad{bottom:172.960000pt;}
.y1c7{bottom:173.600000pt;}
.y161{bottom:173.760000pt;}
.y13e{bottom:173.920000pt;}
.y9b{bottom:174.560000pt;}
.y5e{bottom:176.960000pt;}
.y43{bottom:177.120000pt;}
.yf{bottom:179.560000pt;}
.y10f{bottom:179.840000pt;}
.ycf{bottom:182.400000pt;}
.y17{bottom:187.560000pt;}
.y184{bottom:189.466667pt;}
.y160{bottom:189.786667pt;}
.y9a{bottom:190.426667pt;}
.y5d{bottom:192.826667pt;}
.y42{bottom:192.986667pt;}
.y10e{bottom:195.706667pt;}
.y1ac{bottom:196.986667pt;}
.y13d{bottom:197.786667pt;}
.yce{bottom:198.426667pt;}
.ye{bottom:203.240000pt;}
.y16{bottom:203.560000pt;}
.y183{bottom:205.306667pt;}
.y99{bottom:206.426667pt;}
.y5c{bottom:208.666667pt;}
.y41{bottom:208.826667pt;}
.y10d{bottom:211.546667pt;}
.y1ab{bottom:212.826667pt;}
.y15f{bottom:213.626667pt;}
.y13c{bottom:213.786667pt;}
.ycd{bottom:214.266667pt;}
.yd{bottom:219.080000pt;}
.y15{bottom:219.400000pt;}
.y182{bottom:221.306667pt;}
.y98{bottom:222.266667pt;}
.y5b{bottom:224.506667pt;}
.y40{bottom:224.666667pt;}
.y1aa{bottom:228.666667pt;}
.y1c6{bottom:229.146667pt;}
.y15e{bottom:229.466667pt;}
.y13b{bottom:229.626667pt;}
.yea{bottom:230.106667pt;}
.y10c{bottom:235.386667pt;}
.ycc{bottom:237.786667pt;}
.y97{bottom:238.106667pt;}
.y5a{bottom:240.346667pt;}
.y3f{bottom:240.506667pt;}
.y181{bottom:245.146667pt;}
.y15d{bottom:245.306667pt;}
.y170{bottom:245.466667pt;}
.ye9{bottom:245.946667pt;}
.yec{bottom:246.106667pt;}
.y10b{bottom:251.226667pt;}
.y1a9{bottom:252.506667pt;}
.y13a{bottom:253.466667pt;}
.y96{bottom:253.946667pt;}
.y3e{bottom:256.346667pt;}
.y180{bottom:260.986667pt;}
.y15c{bottom:261.146667pt;}
.y16f{bottom:261.306667pt;}
.ye8{bottom:261.786667pt;}
.ycb{bottom:261.946667pt;}
.y10a{bottom:267.066667pt;}
.y1a8{bottom:268.346667pt;}
.y139{bottom:269.306667pt;}
.y95{bottom:269.786667pt;}
.y59{bottom:272.186667pt;}
.y3d{bottom:272.346667pt;}
.y17f{bottom:276.826667pt;}
.yca{bottom:277.786667pt;}
.y109{bottom:283.066667pt;}
.y1a7{bottom:284.186667pt;}
.y1c5{bottom:284.826667pt;}
.y15b{bottom:284.986667pt;}
.y138{bottom:285.146667pt;}
.y94{bottom:285.786667pt;}
.y58{bottom:288.026667pt;}
.y3c{bottom:288.186667pt;}
.ye7{bottom:293.626667pt;}
.yc9{bottom:293.786667pt;}
.y108{bottom:298.906667pt;}
.y17e{bottom:300.666667pt;}
.y137{bottom:300.986667pt;}
.y93{bottom:301.626667pt;}
.y57{bottom:303.866667pt;}
.y3b{bottom:304.026667pt;}
.y1a6{bottom:308.186667pt;}
.ye6{bottom:309.466667pt;}
.yc8{bottom:309.626667pt;}
.y17d{bottom:316.506667pt;}
.y136{bottom:316.986667pt;}
.y92{bottom:317.466667pt;}
.y56{bottom:319.706667pt;}
.y3a{bottom:319.866667pt;}
.y107{bottom:324.026667pt;}
.y15a{bottom:324.826667pt;}
.yc7{bottom:325.466667pt;}
.y17c{bottom:332.506667pt;}
.y16e{bottom:332.826667pt;}
.y91{bottom:333.306667pt;}
.y39{bottom:335.706667pt;}
.y1a5{bottom:339.866667pt;}
.y1c4{bottom:340.506667pt;}
.y159{bottom:340.666667pt;}
.y135{bottom:340.826667pt;}
.yc6{bottom:341.306667pt;}
.y55{bottom:343.386667pt;}
.y17b{bottom:348.346667pt;}
.y90{bottom:349.146667pt;}
.y106{bottom:351.866667pt;}
.y1c3{bottom:356.346667pt;}
.y158{bottom:356.506667pt;}
.y134{bottom:356.666667pt;}
.yc5{bottom:357.146667pt;}
.y38{bottom:359.706667pt;}
.y1a4{bottom:363.706667pt;}
.y8f{bottom:364.986667pt;}
.y54{bottom:367.546667pt;}
.y105{bottom:367.706667pt;}
.y17a{bottom:372.186667pt;}
.y16d{bottom:372.506667pt;}
.yc4{bottom:372.986667pt;}
.y37{bottom:375.546667pt;}
.y1a3{bottom:379.546667pt;}
.y157{bottom:380.346667pt;}
.y133{bottom:380.506667pt;}
.y8e{bottom:380.986667pt;}
.y53{bottom:383.386667pt;}
.y104{bottom:383.706667pt;}
.y179{bottom:388.026667pt;}
.ybb{bottom:388.986667pt;}
.y36{bottom:391.386667pt;}
.y1a2{bottom:395.426667pt;}
.y1c2{bottom:396.066667pt;}
.y132{bottom:396.386667pt;}
.y8d{bottom:396.866667pt;}
.y52{bottom:399.266667pt;}
.y103{bottom:399.586667pt;}
.y178{bottom:403.906667pt;}
.yba{bottom:404.866667pt;}
.y35{bottom:407.266667pt;}
.y1c1{bottom:411.906667pt;}
.y131{bottom:412.386667pt;}
.ye5{bottom:412.706667pt;}
.y51{bottom:415.106667pt;}
.y102{bottom:415.426667pt;}
.y1a1{bottom:419.426667pt;}
.y156{bottom:420.226667pt;}
.y8c{bottom:420.386667pt;}
.yb9{bottom:420.706667pt;}
.y34{bottom:423.106667pt;}
.y177{bottom:427.906667pt;}
.y16c{bottom:428.226667pt;}
.ye4{bottom:428.546667pt;}
.yc3{bottom:428.706667pt;}
.y50{bottom:430.946667pt;}
.y101{bottom:431.266667pt;}
.y1a0{bottom:435.266667pt;}
.y1c0{bottom:435.746667pt;}
.y155{bottom:436.066667pt;}
.y130{bottom:436.226667pt;}
.yb8{bottom:436.546667pt;}
.y33{bottom:438.946667pt;}
.y176{bottom:443.746667pt;}
.ye3{bottom:444.386667pt;}
.y8b{bottom:444.546667pt;}
.y4f{bottom:446.946667pt;}
.y100{bottom:447.106667pt;}
.y19f{bottom:451.106667pt;}
.y1bf{bottom:451.746667pt;}
.y154{bottom:451.906667pt;}
.y12f{bottom:452.066667pt;}
.yb7{bottom:452.386667pt;}
.y32{bottom:454.946667pt;}
.y8a{bottom:460.386667pt;}
.y4e{bottom:462.786667pt;}
.yff{bottom:462.946667pt;}
.y12e{bottom:467.906667pt;}
.yb6{bottom:468.386667pt;}
.y31{bottom:470.786667pt;}
.y19e{bottom:474.946667pt;}
.y1be{bottom:475.586667pt;}
.y153{bottom:475.746667pt;}
.ye2{bottom:476.226667pt;}
.y89{bottom:476.386667pt;}
.y4d{bottom:478.626667pt;}
.yfe{bottom:478.946667pt;}
.y16b{bottom:483.746667pt;}
.y175{bottom:483.906667pt;}
.yb5{bottom:484.226667pt;}
.y30{bottom:486.626667pt;}
.y19d{bottom:490.786667pt;}
.y1bd{bottom:491.426667pt;}
.y152{bottom:491.586667pt;}
.y12d{bottom:491.746667pt;}
.yf4{bottom:492.066667pt;}
.y88{bottom:492.226667pt;}
.y4c{bottom:494.466667pt;}
.yfd{bottom:494.786667pt;}
.y16a{bottom:499.586667pt;}
.y174{bottom:499.746667pt;}
.yb4{bottom:500.066667pt;}
.y2f{bottom:502.466667pt;}
.y1bc{bottom:507.266667pt;}
.y12c{bottom:507.586667pt;}
.y87{bottom:508.066667pt;}
.y4b{bottom:510.306667pt;}
.yfc{bottom:510.626667pt;}
.y19c{bottom:514.786667pt;}
.yb3{bottom:515.906667pt;}
.y2e{bottom:518.306667pt;}
.y151{bottom:523.426667pt;}
.y12b{bottom:523.586667pt;}
.y86{bottom:523.906667pt;}
.y4a{bottom:526.306667pt;}
.yfb{bottom:526.466667pt;}
.y19b{bottom:530.626667pt;}
.y1bb{bottom:531.106667pt;}
.yb2{bottom:531.746667pt;}
.y2d{bottom:534.306667pt;}
.y12a{bottom:539.426667pt;}
.y85{bottom:539.746667pt;}
.yfa{bottom:542.306667pt;}
.y19a{bottom:546.466667pt;}
.y1ba{bottom:547.106667pt;}
.y150{bottom:547.266667pt;}
.yb1{bottom:547.586667pt;}
.y2c{bottom:550.146667pt;}
.y169{bottom:555.266667pt;}
.y84{bottom:555.586667pt;}
.yf9{bottom:558.306667pt;}
.y1b9{bottom:562.946667pt;}
.y14f{bottom:563.106667pt;}
.y129{bottom:563.266667pt;}
.yb0{bottom:563.586667pt;}
.y2b{bottom:565.986667pt;}
.y199{bottom:570.306667pt;}
.y168{bottom:571.106667pt;}
.y83{bottom:571.586667pt;}
.yf8{bottom:574.146667pt;}
.y1b8{bottom:578.786667pt;}
.y128{bottom:579.106667pt;}
.ye1{bottom:579.426667pt;}
.y2a{bottom:581.826667pt;}
.y198{bottom:586.146667pt;}
.y14e{bottom:586.946667pt;}
.yaf{bottom:587.106667pt;}
.y82{bottom:587.426667pt;}
.yf7{bottom:589.986667pt;}
.y127{bottom:594.946667pt;}
.ye0{bottom:595.266667pt;}
.y29{bottom:597.666667pt;}
.y197{bottom:602.013333pt;}
.y1b7{bottom:602.653333pt;}
.y14d{bottom:602.813333pt;}
.y81{bottom:603.293333pt;}
.y126{bottom:610.813333pt;}
.ydf{bottom:611.133333pt;}
.yae{bottom:611.293333pt;}
.y28{bottom:613.533333pt;}
.yf6{bottom:615.133333pt;}
.y196{bottom:618.013333pt;}
.y1b6{bottom:618.493333pt;}
.y14c{bottom:618.813333pt;}
.y80{bottom:619.133333pt;}
.y167{bottom:626.813333pt;}
.yde{bottom:626.973333pt;}
.yad{bottom:627.133333pt;}
.y27{bottom:629.533333pt;}
.y1b5{bottom:634.333333pt;}
.y125{bottom:634.813333pt;}
.y7f{bottom:634.973333pt;}
.y195{bottom:642.173333pt;}
.y14b{bottom:642.653333pt;}
.ydd{bottom:642.813333pt;}
.yac{bottom:642.973333pt;}
.y26{bottom:646.653333pt;}
.y1b4{bottom:650.333333pt;}
.y124{bottom:650.653333pt;}
.y7e{bottom:650.813333pt;}
.y194{bottom:658.013333pt;}
.y1d9{bottom:658.333333pt;}
.y14a{bottom:658.493333pt;}
.yab{bottom:658.813333pt;}
.y123{bottom:666.493333pt;}
.y7d{bottom:666.813333pt;}
.y23{bottom:670.173333pt;}
.y193{bottom:674.013333pt;}
.y1d8{bottom:674.173333pt;}
.y149{bottom:674.333333pt;}
.ydc{bottom:674.653333pt;}
.yaa{bottom:674.813333pt;}
.y122{bottom:682.333333pt;}
.y7c{bottom:682.653333pt;}
.y192{bottom:690.013333pt;}
.y1b3{bottom:690.333333pt;}
.ydb{bottom:690.493333pt;}
.ya9{bottom:690.653333pt;}
.y1d7{bottom:698.013333pt;}
.y121{bottom:698.173333pt;}
.y7b{bottom:698.493333pt;}
.y191{bottom:706.013333pt;}
.y1cb{bottom:706.173333pt;}
.yf3{bottom:706.333333pt;}
.ya8{bottom:706.493333pt;}
.yc{bottom:712.413333pt;}
.y1d6{bottom:713.853333pt;}
.y148{bottom:714.173333pt;}
.yc2{bottom:714.333333pt;}
.y190{bottom:722.013333pt;}
.y120{bottom:722.173333pt;}
.y7a{bottom:722.333333pt;}
.y1d5{bottom:729.693333pt;}
.yf2{bottom:729.853333pt;}
.y147{bottom:730.013333pt;}
.yc1{bottom:730.173333pt;}
.y11f{bottom:738.013333pt;}
.y79{bottom:738.173333pt;}
.y1d4{bottom:745.693333pt;}
.y146{bottom:745.853333pt;}
.yc0{bottom:746.173333pt;}
.y11e{bottom:753.853333pt;}
.y78{bottom:754.173333pt;}
.y18f{bottom:761.693333pt;}
.ybf{bottom:762.013333pt;}
.y1d3{bottom:769.533333pt;}
.y145{bottom:769.693333pt;}
.y77{bottom:770.013333pt;}
.y18e{bottom:777.533333pt;}
.y11d{bottom:777.693333pt;}
.ybe{bottom:777.853333pt;}
.y1d2{bottom:785.373333pt;}
.y144{bottom:785.533333pt;}
.y76{bottom:785.853333pt;}
.y11c{bottom:793.533333pt;}
.ybd{bottom:793.693333pt;}
.y1d1{bottom:801.213333pt;}
.y143{bottom:801.373333pt;}
.y75{bottom:801.693333pt;}
.y11b{bottom:809.373333pt;}
.yda{bottom:809.573333pt;}
.y1d0{bottom:817.093333pt;}
.y18d{bottom:817.413333pt;}
.y74{bottom:817.573333pt;}
.yd9{bottom:825.413333pt;}
.y73{bottom:833.413333pt;}
.y1cf{bottom:840.933333pt;}
.y11a{bottom:841.253333pt;}
.yd8{bottom:841.413333pt;}
.y166{bottom:849.253333pt;}
.y72{bottom:849.413333pt;}
.y1ce{bottom:856.933333pt;}
.y173{bottom:857.093333pt;}
.yd7{bottom:857.253333pt;}
.y119{bottom:865.093333pt;}
.y71{bottom:865.253333pt;}
.y1cd{bottom:872.773333pt;}
.y18c{bottom:872.933333pt;}
.yd6{bottom:873.093333pt;}
.yf5{bottom:873.253333pt;}
.y118{bottom:880.933333pt;}
.y70{bottom:881.093333pt;}
.yd5{bottom:888.933333pt;}
.yeb{bottom:889.093333pt;}
.y117{bottom:896.773333pt;}
.y6f{bottom:896.933333pt;}
.yd4{bottom:904.773333pt;}
.ya7{bottom:904.933333pt;}
.y6e{bottom:912.773333pt;}
.y1cc{bottom:912.933333pt;}
.ya6{bottom:920.773333pt;}
.y18b{bottom:928.613333pt;}
.y6d{bottom:928.773333pt;}
.yd3{bottom:936.613333pt;}
.ya5{bottom:936.773333pt;}
.y6c{bottom:944.613333pt;}
.yd2{bottom:952.453333pt;}
.ya4{bottom:952.613333pt;}
.yb{bottom:956.293333pt;}
.y6b{bottom:960.453333pt;}
.yd1{bottom:968.293333pt;}
.ya3{bottom:968.453333pt;}
.y6a{bottom:976.293333pt;}
.ya{bottom:979.813333pt;}
.y18a{bottom:984.133333pt;}
.ya2{bottom:984.293333pt;}
.y5{bottom:989.280000pt;}
.yd0{bottom:991.813333pt;}
.y69{bottom:992.133333pt;}
.ya1{bottom:1000.133333pt;}
.y9{bottom:1006.533333pt;}
.y116{bottom:1007.973333pt;}
.y68{bottom:1015.973333pt;}
.y115{bottom:1024.000000pt;}
.y67{bottom:1032.000000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y1ca{bottom:1039.840000pt;}
.y66{bottom:1047.840000pt;}
.y2{bottom:1050.240000pt;}
.y1c9{bottom:1055.680000pt;}
.y7{bottom:1058.880000pt;}
.y65{bottom:1063.680000pt;}
.y1{bottom:1063.840000pt;}
.y63{bottom:1088.480000pt;}
.h11{height:34.710938pt;}
.h12{height:36.305625pt;}
.h17{height:39.562500pt;}
.he{height:41.600000pt;}
.h5{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h14{height:47.085938pt;}
.hb{height:47.109375pt;}
.h16{height:47.882812pt;}
.hd{height:48.375000pt;}
.h13{height:49.336436pt;}
.h15{height:49.968750pt;}
.h2{height:52.134375pt;}
.h10{height:52.526250pt;}
.ha{height:53.370000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.hf{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:238.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w3{width:188.385333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.xf{left:49.280000pt;}
.x9{left:61.761333pt;}
.x15{left:72.000000pt;}
.xc{left:84.672000pt;}
.x14{left:96.032000pt;}
.x6{left:119.712000pt;}
.xb{left:250.946667pt;}
.x8{left:316.066667pt;}
.x7{left:317.346667pt;}
.x11{left:389.506667pt;}
.xd{left:420.893333pt;}
.x12{left:444.893333pt;}
.xe{left:457.533333pt;}
.x13{left:468.893333pt;}
.x10{left:604.933333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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