
    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_17023b1fd2a3460b3f864be8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_d2047d60bee97e32bc1c0bca.woff2')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_cfee9ec893996d72ce843227.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_8d8b349874f955536d9ed9da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b87444467a102aee52b375a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_a9a60ed7e608db74afa25606.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_56b4da315545bdf68b317c61.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_d937e803e61abd7d135c36c5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dca219fc026cf20511df32c9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7007b2ef8300d273d5038073.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_42fca563365cb1b11d05ff27.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_aac3f1c5153279f65749c1ca.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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:ff10;src:url('chunks/assets/font_f2a8e97c89c826b9c64d37ad.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_7bc525031191cf70208a1b57.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_2f35a34c2a24136ea23467b1.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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:ff14;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.lsd{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.lsb{letter-spacing:43.146720px;}
.ls10{letter-spacing:46.026720px;}
.lsa{letter-spacing:59.706720px;}
.lse{letter-spacing:64.026720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws7{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-5.557680px;}
._5{margin-left:-4.202640px;}
._3{margin-left:-3.022080px;}
._2{margin-left:-2.021760px;}
._0{margin-left:-1.014000px;}
._1{width:1.224000px;}
._b{width:2.411760px;}
._d{width:3.705120px;}
._11{width:4.725120px;}
._f{width:5.767920px;}
._10{width:6.870240px;}
._14{width:7.903440px;}
._8{width:8.935200px;}
._e{width:10.546560px;}
._12{width:11.803680px;}
._13{width:12.810960px;}
._c{width:13.835520px;}
._7{width:16.613280px;}
._6{width:18.840240px;}
._a{width:21.126240px;}
._9{width:22.170960px;}
._15{width:35.915760px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:3.240000px;}
.yc8{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y101{bottom:3.960000px;}
.yfe{bottom:4.140000px;}
.y11a{bottom:4.185000px;}
.y139{bottom:4.320000px;}
.y91{bottom:5.400000px;}
.y93{bottom:5.580000px;}
.ybf{bottom:6.840000px;}
.yba{bottom:7.020000px;}
.y151{bottom:8.454000px;}
.y14c{bottom:8.460000px;}
.y153{bottom:8.640000px;}
.ye{bottom:9.540000px;}
.y18{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y3e{bottom:15.660000px;}
.y16{bottom:17.460000px;}
.y4{bottom:17.496000px;}
.y3d{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.y3a{bottom:20.340000px;}
.yfc{bottom:21.420000px;}
.yb{bottom:30.240000px;}
.y5{bottom:33.480000px;}
.y39{bottom:37.620000px;}
.y15{bottom:37.800000px;}
.ya{bottom:46.620000px;}
.y14{bottom:50.760000px;}
.y1{bottom:54.360000px;}
.y38{bottom:54.900000px;}
.y13{bottom:69.120000px;}
.y37{bottom:72.180000px;}
.y9{bottom:73.470000px;}
.y12{bottom:88.200000px;}
.y36{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y154{bottom:96.696000px;}
.y53{bottom:101.016000px;}
.yf2{bottom:104.976000px;}
.y35{bottom:106.740000px;}
.yc5{bottom:110.916000px;}
.y7{bottom:111.450000px;}
.y8f{bottom:111.816000px;}
.y11{bottom:113.940000px;}
.y52{bottom:118.116000px;}
.y152{bottom:119.916000px;}
.yf1{bottom:122.256000px;}
.y34{bottom:123.870000px;}
.y18e{bottom:125.316000px;}
.y126{bottom:127.836000px;}
.yc4{bottom:128.196000px;}
.y26{bottom:128.730000px;}
.y8e{bottom:129.096000px;}
.y51{bottom:135.396000px;}
.yf0{bottom:139.536000px;}
.y10{bottom:139.680000px;}
.y33{bottom:141.150000px;}
.y18d{bottom:142.596000px;}
.y150{bottom:143.316000px;}
.y125{bottom:145.116000px;}
.yc3{bottom:145.476000px;}
.y25{bottom:146.010000px;}
.y8d{bottom:146.376000px;}
.y50{bottom:152.670000px;}
.yef{bottom:156.810000px;}
.y32{bottom:158.430000px;}
.y18c{bottom:159.870000px;}
.y8c{bottom:161.130000px;}
.y124{bottom:162.210000px;}
.yc2{bottom:162.750000px;}
.y24{bottom:163.290000px;}
.y14f{bottom:166.530000px;}
.y4f{bottom:169.950000px;}
.yee{bottom:174.090000px;}
.y31{bottom:175.710000px;}
.y18b{bottom:176.970000px;}
.y8b{bottom:179.130000px;}
.y123{bottom:179.490000px;}
.yc1{bottom:180.030000px;}
.y23{bottom:181.110000px;}
.y4e{bottom:187.230000px;}
.y14e{bottom:189.750000px;}
.yed{bottom:191.190000px;}
.y30{bottom:192.990000px;}
.y18a{bottom:194.250000px;}
.y122{bottom:196.770000px;}
.y8a{bottom:197.130000px;}
.yc0{bottom:197.310000px;}
.y22{bottom:198.390000px;}
.y4d{bottom:204.510000px;}
.yec{bottom:208.470000px;}
.y2f{bottom:210.270000px;}
.y189{bottom:211.530000px;}
.ybe{bottom:212.070000px;}
.y14d{bottom:212.970000px;}
.y121{bottom:214.050000px;}
.y89{bottom:215.130000px;}
.y21{bottom:215.850000px;}
.y4c{bottom:221.610000px;}
.yeb{bottom:225.750000px;}
.y2e{bottom:227.370000px;}
.y188{bottom:228.810000px;}
.y120{bottom:231.330000px;}
.y20{bottom:233.130000px;}
.ybd{bottom:233.670000px;}
.y14b{bottom:236.190000px;}
.y4b{bottom:238.890000px;}
.yea{bottom:243.030000px;}
.y2d{bottom:244.650000px;}
.y187{bottom:246.090000px;}
.y11f{bottom:248.610000px;}
.y1f{bottom:250.590000px;}
.y88{bottom:251.130000px;}
.ybc{bottom:255.450000px;}
.y4a{bottom:256.170000px;}
.ye9{bottom:257.070000px;}
.y2c{bottom:261.930000px;}
.y14a{bottom:262.650000px;}
.y186{bottom:263.370000px;}
.y11e{bottom:265.710000px;}
.y1e{bottom:268.050000px;}
.y87{bottom:269.130000px;}
.y49{bottom:273.450000px;}
.ybb{bottom:277.230000px;}
.y2b{bottom:279.210000px;}
.y149{bottom:279.930000px;}
.y185{bottom:280.470000px;}
.y11d{bottom:282.990000px;}
.y1d{bottom:285.330000px;}
.y86{bottom:287.130000px;}
.y48{bottom:290.730000px;}
.y2a{bottom:296.490000px;}
.y148{bottom:297.210000px;}
.y184{bottom:297.750000px;}
.yb9{bottom:299.010000px;}
.y11c{bottom:300.270000px;}
.y85{bottom:305.130000px;}
.y1c{bottom:305.670000px;}
.y47{bottom:307.830000px;}
.y29{bottom:313.770000px;}
.y147{bottom:314.490000px;}
.y183{bottom:315.030000px;}
.y11b{bottom:315.750000px;}
.y84{bottom:323.130000px;}
.yb8{bottom:324.030000px;}
.y46{bottom:325.110000px;}
.y146{bottom:329.250000px;}
.y28{bottom:330.870000px;}
.y182{bottom:332.310000px;}
.y1b{bottom:333.210000px;}
.y119{bottom:335.370000px;}
.y83{bottom:341.175000px;}
.yb7{bottom:341.355000px;}
.y45{bottom:342.435000px;}
.y27{bottom:348.150000px;}
.y145{bottom:348.375000px;}
.y181{bottom:349.635000px;}
.y1a{bottom:350.850000px;}
.y118{bottom:355.035000px;}
.yb6{bottom:358.455000px;}
.y82{bottom:359.175000px;}
.y44{bottom:359.715000px;}
.y180{bottom:366.735000px;}
.y144{bottom:367.455000px;}
.yb5{bottom:373.215000px;}
.y117{bottom:374.475000px;}
.y43{bottom:376.995000px;}
.y81{bottom:377.175000px;}
.y17f{bottom:384.015000px;}
.y143{bottom:386.355000px;}
.yb4{bottom:393.555000px;}
.y116{bottom:394.095000px;}
.y42{bottom:394.275000px;}
.y80{bottom:395.175000px;}
.y17e{bottom:401.295000px;}
.y142{bottom:405.435000px;}
.y41{bottom:411.375000px;}
.y7f{bottom:413.175000px;}
.yb3{bottom:413.715000px;}
.y17d{bottom:418.575000px;}
.y141{bottom:424.515000px;}
.y40{bottom:428.655000px;}
.y7e{bottom:431.175000px;}
.y115{bottom:433.335000px;}
.yb2{bottom:434.055000px;}
.y17c{bottom:435.855000px;}
.y140{bottom:443.595000px;}
.y3f{bottom:445.935000px;}
.y7d{bottom:449.175000px;}
.y114{bottom:452.775000px;}
.y17b{bottom:453.135000px;}
.yb1{bottom:454.215000px;}
.y3c{bottom:459.975000px;}
.y13f{bottom:462.675000px;}
.y7c{bottom:467.175000px;}
.y17a{bottom:470.235000px;}
.y113{bottom:472.395000px;}
.yb0{bottom:474.555000px;}
.y13e{bottom:481.755000px;}
.y7b{bottom:484.995000px;}
.y179{bottom:487.515000px;}
.y19{bottom:489.315000px;}
.y112{bottom:492.015000px;}
.yaf{bottom:494.715000px;}
.y13d{bottom:500.655000px;}
.y7a{bottom:502.995000px;}
.y178{bottom:504.795000px;}
.y111{bottom:511.635000px;}
.yae{bottom:515.055000px;}
.y13c{bottom:519.735000px;}
.y79{bottom:520.995000px;}
.y177{bottom:522.075000px;}
.y110{bottom:531.075000px;}
.yad{bottom:535.215000px;}
.y13b{bottom:538.815000px;}
.y78{bottom:538.995000px;}
.y176{bottom:539.355000px;}
.y10f{bottom:550.695000px;}
.yac{bottom:555.555000px;}
.y175{bottom:556.635000px;}
.y77{bottom:556.995000px;}
.y13a{bottom:557.895000px;}
.ye8{bottom:568.515000px;}
.y10e{bottom:570.315000px;}
.y174{bottom:573.735000px;}
.y76{bottom:574.995000px;}
.yab{bottom:575.715000px;}
.y138{bottom:576.975000px;}
.ye7{bottom:585.795000px;}
.y10d{bottom:589.935000px;}
.y173{bottom:591.015000px;}
.y75{bottom:592.995000px;}
.yaa{bottom:596.055000px;}
.ye6{bottom:603.075000px;}
.y172{bottom:608.325000px;}
.y10c{bottom:609.405000px;}
.y74{bottom:611.025000px;}
.ya9{bottom:616.245000px;}
.y137{bottom:618.225000px;}
.ye5{bottom:620.385000px;}
.y171{bottom:625.605000px;}
.y73{bottom:629.025000px;}
.y136{bottom:635.505000px;}
.ya8{bottom:636.585000px;}
.ye4{bottom:637.665000px;}
.y170{bottom:642.885000px;}
.y72{bottom:647.025000px;}
.y10b{bottom:648.645000px;}
.y135{bottom:652.785000px;}
.ye3{bottom:654.765000px;}
.ya7{bottom:656.745000px;}
.y16f{bottom:659.985000px;}
.y71{bottom:665.025000px;}
.y10a{bottom:668.265000px;}
.y134{bottom:670.065000px;}
.ye2{bottom:672.045000px;}
.ya6{bottom:677.085000px;}
.y16e{bottom:677.265000px;}
.y70{bottom:683.025000px;}
.y133{bottom:687.345000px;}
.y109{bottom:687.705000px;}
.ye1{bottom:689.325000px;}
.y16d{bottom:694.545000px;}
.ya5{bottom:697.245000px;}
.y6f{bottom:701.025000px;}
.y132{bottom:704.445000px;}
.ye0{bottom:706.605000px;}
.y108{bottom:707.325000px;}
.y16c{bottom:711.825000px;}
.ya4{bottom:717.585000px;}
.y6e{bottom:719.025000px;}
.ydf{bottom:721.365000px;}
.y131{bottom:721.725000px;}
.y107{bottom:726.945000px;}
.y16b{bottom:729.105000px;}
.y6d{bottom:737.025000px;}
.ya3{bottom:737.745000px;}
.y130{bottom:739.005000px;}
.yde{bottom:739.365000px;}
.y16a{bottom:746.385000px;}
.y106{bottom:746.565000px;}
.y6c{bottom:755.025000px;}
.y12f{bottom:756.285000px;}
.ydd{bottom:757.365000px;}
.ya2{bottom:758.085000px;}
.y169{bottom:763.485000px;}
.y105{bottom:766.185000px;}
.y6b{bottom:773.025000px;}
.y12e{bottom:773.565000px;}
.ydc{bottom:775.365000px;}
.ya1{bottom:778.245000px;}
.y168{bottom:780.765000px;}
.y104{bottom:785.625000px;}
.y12d{bottom:790.845000px;}
.y6a{bottom:791.025000px;}
.ydb{bottom:793.365000px;}
.y167{bottom:798.045000px;}
.ya0{bottom:798.585000px;}
.y103{bottom:805.245000px;}
.y12c{bottom:807.945000px;}
.yda{bottom:811.365000px;}
.y69{bottom:812.265000px;}
.y166{bottom:815.325000px;}
.y9f{bottom:818.745000px;}
.y102{bottom:824.865000px;}
.y12b{bottom:825.225000px;}
.yd9{bottom:829.365000px;}
.y68{bottom:829.545000px;}
.y165{bottom:832.605000px;}
.y9e{bottom:839.085000px;}
.y12a{bottom:842.505000px;}
.y100{bottom:844.485000px;}
.y67{bottom:846.825000px;}
.yd8{bottom:847.365000px;}
.y164{bottom:849.885000px;}
.y17{bottom:851.505000px;}
.y9d{bottom:859.245000px;}
.y129{bottom:860.865000px;}
.yff{bottom:863.925000px;}
.y66{bottom:864.105000px;}
.yd7{bottom:865.365000px;}
.y163{bottom:866.985000px;}
.y128{bottom:879.270000px;}
.y9c{bottom:879.630000px;}
.yf{bottom:881.070000px;}
.y65{bottom:881.430000px;}
.yd6{bottom:883.410000px;}
.yfd{bottom:883.590000px;}
.y162{bottom:884.310000px;}
.y127{bottom:897.450000px;}
.y64{bottom:898.530000px;}
.y9b{bottom:899.790000px;}
.yd5{bottom:901.410000px;}
.y161{bottom:901.590000px;}
.yfb{bottom:903.210000px;}
.y63{bottom:915.810000px;}
.y160{bottom:918.870000px;}
.yd4{bottom:919.410000px;}
.y9a{bottom:920.130000px;}
.y62{bottom:933.090000px;}
.y15f{bottom:936.150000px;}
.yd3{bottom:937.410000px;}
.y99{bottom:940.290000px;}
.yfa{bottom:943.350000px;}
.y61{bottom:950.370000px;}
.y15e{bottom:953.430000px;}
.yd2{bottom:955.410000px;}
.y98{bottom:960.630000px;}
.y60{bottom:967.650000px;}
.y15d{bottom:970.530000px;}
.yd1{bottom:973.410000px;}
.yf9{bottom:977.910000px;}
.y97{bottom:980.790000px;}
.y5f{bottom:984.930000px;}
.y15c{bottom:987.810000px;}
.yd0{bottom:991.410000px;}
.yf8{bottom:995.190000px;}
.y96{bottom:1001.130000px;}
.y5e{bottom:1002.030000px;}
.y15b{bottom:1002.570000px;}
.ycf{bottom:1009.410000px;}
.yf7{bottom:1012.290000px;}
.y5d{bottom:1019.310000px;}
.y95{bottom:1021.290000px;}
.y15a{bottom:1025.790000px;}
.yce{bottom:1027.410000px;}
.yf6{bottom:1030.650000px;}
.y5c{bottom:1036.590000px;}
.y94{bottom:1041.630000px;}
.yd{bottom:1041.810000px;}
.ycd{bottom:1045.410000px;}
.yf5{bottom:1049.010000px;}
.y5b{bottom:1053.870000px;}
.y92{bottom:1061.790000px;}
.ycc{bottom:1063.410000px;}
.y6{bottom:1067.010000px;}
.yf4{bottom:1067.370000px;}
.y5a{bottom:1071.150000px;}
.y159{bottom:1072.410000px;}
.ycb{bottom:1081.410000px;}
.y90{bottom:1082.130000px;}
.yf3{bottom:1084.650000px;}
.y59{bottom:1088.430000px;}
.y158{bottom:1095.630000px;}
.yca{bottom:1099.410000px;}
.y58{bottom:1105.530000px;}
.yc9{bottom:1117.410000px;}
.y157{bottom:1118.850000px;}
.y57{bottom:1122.810000px;}
.yc7{bottom:1135.410000px;}
.y56{bottom:1140.120000px;}
.y156{bottom:1142.100000px;}
.yc6{bottom:1153.440000px;}
.y55{bottom:1157.400000px;}
.y155{bottom:1165.320000px;}
.y54{bottom:1174.680000px;}
.h21{height:17.100000px;}
.h22{height:17.136000px;}
.h1f{height:17.280000px;}
.h20{height:17.316000px;}
.h2a{height:18.000000px;}
.h2d{height:18.036000px;}
.h2c{height:18.180000px;}
.h2b{height:18.216000px;}
.h2e{height:18.360000px;}
.h2f{height:18.396000px;}
.h23{height:19.440000px;}
.h26{height:19.476000px;}
.h24{height:19.620000px;}
.h25{height:19.656000px;}
.h28{height:20.880000px;}
.h27{height:21.060000px;}
.h30{height:22.500000px;}
.h31{height:22.536000px;}
.hc{height:24.840000px;}
.h11{height:28.968750px;}
.h1c{height:29.340000px;}
.h13{height:29.556000px;}
.h2{height:32.976000px;}
.h29{height:35.460000px;}
.h9{height:36.180000px;}
.h1d{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h19{height:42.281367px;}
.h12{height:43.453125px;}
.h1e{height:43.506914px;}
.hb{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h6{height:55.987031px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:160.740000px;}
.h15{height:362.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:62.100000px;}
.w3{width:73.080000px;}
.w18{width:73.116000px;}
.w1a{width:81.216000px;}
.w17{width:81.360000px;}
.w1c{width:81.540000px;}
.w1d{width:81.576000px;}
.w19{width:82.620000px;}
.w16{width:97.056000px;}
.w14{width:97.776000px;}
.w20{width:109.800000px;}
.w25{width:110.340000px;}
.w21{width:137.916000px;}
.w22{width:138.240000px;}
.w26{width:138.456000px;}
.w27{width:138.636000px;}
.w28{width:138.780000px;}
.w5{width:151.950000px;}
.w1f{width:199.155000px;}
.w24{width:200.235000px;}
.w8{width:216.075000px;}
.w12{width:234.570000px;}
.we{width:243.975000px;}
.w10{width:244.110000px;}
.wf{width:244.290000px;}
.w11{width:245.235000px;}
.w13{width:248.250000px;}
.wc{width:316.875000px;}
.wb{width:352.155000px;}
.wa{width:376.815000px;}
.wd{width:403.995000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w15{width:631.005000px;}
.w2{width:658.050000px;}
.w1e{width:726.270000px;}
.w23{width:729.690000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.200000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xa{left:27.036000px;}
.x2a{left:29.736000px;}
.x29{left:30.996000px;}
.x27{left:40.896000px;}
.x20{left:52.380000px;}
.x39{left:67.860000px;}
.xb{left:72.030000px;}
.x45{left:75.780000px;}
.x1{left:81.000000px;}
.x2e{left:82.440000px;}
.x43{left:87.120000px;}
.x3b{left:88.590000px;}
.x3d{left:92.520000px;}
.x40{left:94.500000px;}
.x14{left:96.515987px;}
.x4{left:98.130000px;}
.x1d{left:104.610000px;}
.x2b{left:108.035987px;}
.x3f{left:111.420000px;}
.x42{left:115.560000px;}
.x41{left:122.400000px;}
.x15{left:123.515987px;}
.x2c{left:135.035987px;}
.x28{left:180.390000px;}
.x10{left:215.175000px;}
.x22{left:219.450000px;}
.x23{left:222.555000px;}
.x24{left:225.405000px;}
.x21{left:229.935000px;}
.x5{left:232.950000px;}
.x2f{left:262.470000px;}
.x8{left:272.235000px;}
.x38{left:281.775000px;}
.x1c{left:283.034987px;}
.x11{left:297.075000px;}
.xc{left:303.735000px;}
.xf{left:310.935000px;}
.xe{left:313.095000px;}
.x36{left:315.975000px;}
.x47{left:317.235000px;}
.x37{left:323.535000px;}
.x48{left:325.155000px;}
.x1a{left:326.415000px;}
.x1e{left:327.675000px;}
.x44{left:330.915000px;}
.x6{left:331.995000px;}
.x30{left:336.315000px;}
.x46{left:340.094987px;}
.x26{left:345.674987px;}
.x7{left:351.255000px;}
.x16{left:352.694987px;}
.x18{left:360.614987px;}
.xd{left:365.475000px;}
.x2d{left:375.914987px;}
.x3a{left:392.295000px;}
.x49{left:393.915000px;}
.x19{left:399.315000px;}
.x31{left:419.835000px;}
.x9{left:439.500000px;}
.x17{left:459.255000px;}
.x32{left:501.765000px;}
.x3c{left:531.105000px;}
.x4a{left:533.265000px;}
.x1f{left:563.145000px;}
.x33{left:564.585000px;}
.x1b{left:571.425000px;}
.x25{left:614.084987px;}
.x34{left:646.845000px;}
.x3e{left:669.750000px;}
.x4b{left:672.630000px;}
.x35{left:729.150000px;}
.x3{left:739.050000px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.lsd{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.lsb{letter-spacing:38.352640pt;}
.ls10{letter-spacing:40.912640pt;}
.lsa{letter-spacing:53.072640pt;}
.lse{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws7{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-4.940160pt;}
._5{margin-left:-3.735680pt;}
._3{margin-left:-2.686293pt;}
._2{margin-left:-1.797120pt;}
._0{margin-left:-0.901333pt;}
._1{width:1.088000pt;}
._b{width:2.143787pt;}
._d{width:3.293440pt;}
._11{width:4.200107pt;}
._f{width:5.127040pt;}
._10{width:6.106880pt;}
._14{width:7.025280pt;}
._8{width:7.942400pt;}
._e{width:9.374720pt;}
._12{width:10.492160pt;}
._13{width:11.387520pt;}
._c{width:12.298240pt;}
._7{width:14.767360pt;}
._6{width:16.746880pt;}
._a{width:18.778880pt;}
._9{width:19.707520pt;}
._15{width:31.925120pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.880000pt;}
.yc8{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y101{bottom:3.520000pt;}
.yfe{bottom:3.680000pt;}
.y11a{bottom:3.720000pt;}
.y139{bottom:3.840000pt;}
.y91{bottom:4.800000pt;}
.y93{bottom:4.960000pt;}
.ybf{bottom:6.080000pt;}
.yba{bottom:6.240000pt;}
.y151{bottom:7.514667pt;}
.y14c{bottom:7.520000pt;}
.y153{bottom:7.680000pt;}
.ye{bottom:8.480000pt;}
.y18{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y3e{bottom:13.920000pt;}
.y16{bottom:15.520000pt;}
.y4{bottom:15.552000pt;}
.y3d{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.y3a{bottom:18.080000pt;}
.yfc{bottom:19.040000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:29.760000pt;}
.y39{bottom:33.440000pt;}
.y15{bottom:33.600000pt;}
.ya{bottom:41.440000pt;}
.y14{bottom:45.120000pt;}
.y1{bottom:48.320000pt;}
.y38{bottom:48.800000pt;}
.y13{bottom:61.440000pt;}
.y37{bottom:64.160000pt;}
.y9{bottom:65.306667pt;}
.y12{bottom:78.400000pt;}
.y36{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y154{bottom:85.952000pt;}
.y53{bottom:89.792000pt;}
.yf2{bottom:93.312000pt;}
.y35{bottom:94.880000pt;}
.yc5{bottom:98.592000pt;}
.y7{bottom:99.066667pt;}
.y8f{bottom:99.392000pt;}
.y11{bottom:101.280000pt;}
.y52{bottom:104.992000pt;}
.y152{bottom:106.592000pt;}
.yf1{bottom:108.672000pt;}
.y34{bottom:110.106667pt;}
.y18e{bottom:111.392000pt;}
.y126{bottom:113.632000pt;}
.yc4{bottom:113.952000pt;}
.y26{bottom:114.426667pt;}
.y8e{bottom:114.752000pt;}
.y51{bottom:120.352000pt;}
.yf0{bottom:124.032000pt;}
.y10{bottom:124.160000pt;}
.y33{bottom:125.466667pt;}
.y18d{bottom:126.752000pt;}
.y150{bottom:127.392000pt;}
.y125{bottom:128.992000pt;}
.yc3{bottom:129.312000pt;}
.y25{bottom:129.786667pt;}
.y8d{bottom:130.112000pt;}
.y50{bottom:135.706667pt;}
.yef{bottom:139.386667pt;}
.y32{bottom:140.826667pt;}
.y18c{bottom:142.106667pt;}
.y8c{bottom:143.226667pt;}
.y124{bottom:144.186667pt;}
.yc2{bottom:144.666667pt;}
.y24{bottom:145.146667pt;}
.y14f{bottom:148.026667pt;}
.y4f{bottom:151.066667pt;}
.yee{bottom:154.746667pt;}
.y31{bottom:156.186667pt;}
.y18b{bottom:157.306667pt;}
.y8b{bottom:159.226667pt;}
.y123{bottom:159.546667pt;}
.yc1{bottom:160.026667pt;}
.y23{bottom:160.986667pt;}
.y4e{bottom:166.426667pt;}
.y14e{bottom:168.666667pt;}
.yed{bottom:169.946667pt;}
.y30{bottom:171.546667pt;}
.y18a{bottom:172.666667pt;}
.y122{bottom:174.906667pt;}
.y8a{bottom:175.226667pt;}
.yc0{bottom:175.386667pt;}
.y22{bottom:176.346667pt;}
.y4d{bottom:181.786667pt;}
.yec{bottom:185.306667pt;}
.y2f{bottom:186.906667pt;}
.y189{bottom:188.026667pt;}
.ybe{bottom:188.506667pt;}
.y14d{bottom:189.306667pt;}
.y121{bottom:190.266667pt;}
.y89{bottom:191.226667pt;}
.y21{bottom:191.866667pt;}
.y4c{bottom:196.986667pt;}
.yeb{bottom:200.666667pt;}
.y2e{bottom:202.106667pt;}
.y188{bottom:203.386667pt;}
.y120{bottom:205.626667pt;}
.y20{bottom:207.226667pt;}
.ybd{bottom:207.706667pt;}
.y14b{bottom:209.946667pt;}
.y4b{bottom:212.346667pt;}
.yea{bottom:216.026667pt;}
.y2d{bottom:217.466667pt;}
.y187{bottom:218.746667pt;}
.y11f{bottom:220.986667pt;}
.y1f{bottom:222.746667pt;}
.y88{bottom:223.226667pt;}
.ybc{bottom:227.066667pt;}
.y4a{bottom:227.706667pt;}
.ye9{bottom:228.506667pt;}
.y2c{bottom:232.826667pt;}
.y14a{bottom:233.466667pt;}
.y186{bottom:234.106667pt;}
.y11e{bottom:236.186667pt;}
.y1e{bottom:238.266667pt;}
.y87{bottom:239.226667pt;}
.y49{bottom:243.066667pt;}
.ybb{bottom:246.426667pt;}
.y2b{bottom:248.186667pt;}
.y149{bottom:248.826667pt;}
.y185{bottom:249.306667pt;}
.y11d{bottom:251.546667pt;}
.y1d{bottom:253.626667pt;}
.y86{bottom:255.226667pt;}
.y48{bottom:258.426667pt;}
.y2a{bottom:263.546667pt;}
.y148{bottom:264.186667pt;}
.y184{bottom:264.666667pt;}
.yb9{bottom:265.786667pt;}
.y11c{bottom:266.906667pt;}
.y85{bottom:271.226667pt;}
.y1c{bottom:271.706667pt;}
.y47{bottom:273.626667pt;}
.y29{bottom:278.906667pt;}
.y147{bottom:279.546667pt;}
.y183{bottom:280.026667pt;}
.y11b{bottom:280.666667pt;}
.y84{bottom:287.226667pt;}
.yb8{bottom:288.026667pt;}
.y46{bottom:288.986667pt;}
.y146{bottom:292.666667pt;}
.y28{bottom:294.106667pt;}
.y182{bottom:295.386667pt;}
.y1b{bottom:296.186667pt;}
.y119{bottom:298.106667pt;}
.y83{bottom:303.266667pt;}
.yb7{bottom:303.426667pt;}
.y45{bottom:304.386667pt;}
.y27{bottom:309.466667pt;}
.y145{bottom:309.666667pt;}
.y181{bottom:310.786667pt;}
.y1a{bottom:311.866667pt;}
.y118{bottom:315.586667pt;}
.yb6{bottom:318.626667pt;}
.y82{bottom:319.266667pt;}
.y44{bottom:319.746667pt;}
.y180{bottom:325.986667pt;}
.y144{bottom:326.626667pt;}
.yb5{bottom:331.746667pt;}
.y117{bottom:332.866667pt;}
.y43{bottom:335.106667pt;}
.y81{bottom:335.266667pt;}
.y17f{bottom:341.346667pt;}
.y143{bottom:343.426667pt;}
.yb4{bottom:349.826667pt;}
.y116{bottom:350.306667pt;}
.y42{bottom:350.466667pt;}
.y80{bottom:351.266667pt;}
.y17e{bottom:356.706667pt;}
.y142{bottom:360.386667pt;}
.y41{bottom:365.666667pt;}
.y7f{bottom:367.266667pt;}
.yb3{bottom:367.746667pt;}
.y17d{bottom:372.066667pt;}
.y141{bottom:377.346667pt;}
.y40{bottom:381.026667pt;}
.y7e{bottom:383.266667pt;}
.y115{bottom:385.186667pt;}
.yb2{bottom:385.826667pt;}
.y17c{bottom:387.426667pt;}
.y140{bottom:394.306667pt;}
.y3f{bottom:396.386667pt;}
.y7d{bottom:399.266667pt;}
.y114{bottom:402.466667pt;}
.y17b{bottom:402.786667pt;}
.yb1{bottom:403.746667pt;}
.y3c{bottom:408.866667pt;}
.y13f{bottom:411.266667pt;}
.y7c{bottom:415.266667pt;}
.y17a{bottom:417.986667pt;}
.y113{bottom:419.906667pt;}
.yb0{bottom:421.826667pt;}
.y13e{bottom:428.226667pt;}
.y7b{bottom:431.106667pt;}
.y179{bottom:433.346667pt;}
.y19{bottom:434.946667pt;}
.y112{bottom:437.346667pt;}
.yaf{bottom:439.746667pt;}
.y13d{bottom:445.026667pt;}
.y7a{bottom:447.106667pt;}
.y178{bottom:448.706667pt;}
.y111{bottom:454.786667pt;}
.yae{bottom:457.826667pt;}
.y13c{bottom:461.986667pt;}
.y79{bottom:463.106667pt;}
.y177{bottom:464.066667pt;}
.y110{bottom:472.066667pt;}
.yad{bottom:475.746667pt;}
.y13b{bottom:478.946667pt;}
.y78{bottom:479.106667pt;}
.y176{bottom:479.426667pt;}
.y10f{bottom:489.506667pt;}
.yac{bottom:493.826667pt;}
.y175{bottom:494.786667pt;}
.y77{bottom:495.106667pt;}
.y13a{bottom:495.906667pt;}
.ye8{bottom:505.346667pt;}
.y10e{bottom:506.946667pt;}
.y174{bottom:509.986667pt;}
.y76{bottom:511.106667pt;}
.yab{bottom:511.746667pt;}
.y138{bottom:512.866667pt;}
.ye7{bottom:520.706667pt;}
.y10d{bottom:524.386667pt;}
.y173{bottom:525.346667pt;}
.y75{bottom:527.106667pt;}
.yaa{bottom:529.826667pt;}
.ye6{bottom:536.066667pt;}
.y172{bottom:540.733333pt;}
.y10c{bottom:541.693333pt;}
.y74{bottom:543.133333pt;}
.ya9{bottom:547.773333pt;}
.y137{bottom:549.533333pt;}
.ye5{bottom:551.453333pt;}
.y171{bottom:556.093333pt;}
.y73{bottom:559.133333pt;}
.y136{bottom:564.893333pt;}
.ya8{bottom:565.853333pt;}
.ye4{bottom:566.813333pt;}
.y170{bottom:571.453333pt;}
.y72{bottom:575.133333pt;}
.y10b{bottom:576.573333pt;}
.y135{bottom:580.253333pt;}
.ye3{bottom:582.013333pt;}
.ya7{bottom:583.773333pt;}
.y16f{bottom:586.653333pt;}
.y71{bottom:591.133333pt;}
.y10a{bottom:594.013333pt;}
.y134{bottom:595.613333pt;}
.ye2{bottom:597.373333pt;}
.ya6{bottom:601.853333pt;}
.y16e{bottom:602.013333pt;}
.y70{bottom:607.133333pt;}
.y133{bottom:610.973333pt;}
.y109{bottom:611.293333pt;}
.ye1{bottom:612.733333pt;}
.y16d{bottom:617.373333pt;}
.ya5{bottom:619.773333pt;}
.y6f{bottom:623.133333pt;}
.y132{bottom:626.173333pt;}
.ye0{bottom:628.093333pt;}
.y108{bottom:628.733333pt;}
.y16c{bottom:632.733333pt;}
.ya4{bottom:637.853333pt;}
.y6e{bottom:639.133333pt;}
.ydf{bottom:641.213333pt;}
.y131{bottom:641.533333pt;}
.y107{bottom:646.173333pt;}
.y16b{bottom:648.093333pt;}
.y6d{bottom:655.133333pt;}
.ya3{bottom:655.773333pt;}
.y130{bottom:656.893333pt;}
.yde{bottom:657.213333pt;}
.y16a{bottom:663.453333pt;}
.y106{bottom:663.613333pt;}
.y6c{bottom:671.133333pt;}
.y12f{bottom:672.253333pt;}
.ydd{bottom:673.213333pt;}
.ya2{bottom:673.853333pt;}
.y169{bottom:678.653333pt;}
.y105{bottom:681.053333pt;}
.y6b{bottom:687.133333pt;}
.y12e{bottom:687.613333pt;}
.ydc{bottom:689.213333pt;}
.ya1{bottom:691.773333pt;}
.y168{bottom:694.013333pt;}
.y104{bottom:698.333333pt;}
.y12d{bottom:702.973333pt;}
.y6a{bottom:703.133333pt;}
.ydb{bottom:705.213333pt;}
.y167{bottom:709.373333pt;}
.ya0{bottom:709.853333pt;}
.y103{bottom:715.773333pt;}
.y12c{bottom:718.173333pt;}
.yda{bottom:721.213333pt;}
.y69{bottom:722.013333pt;}
.y166{bottom:724.733333pt;}
.y9f{bottom:727.773333pt;}
.y102{bottom:733.213333pt;}
.y12b{bottom:733.533333pt;}
.yd9{bottom:737.213333pt;}
.y68{bottom:737.373333pt;}
.y165{bottom:740.093333pt;}
.y9e{bottom:745.853333pt;}
.y12a{bottom:748.893333pt;}
.y100{bottom:750.653333pt;}
.y67{bottom:752.733333pt;}
.yd8{bottom:753.213333pt;}
.y164{bottom:755.453333pt;}
.y17{bottom:756.893333pt;}
.y9d{bottom:763.773333pt;}
.y129{bottom:765.213333pt;}
.yff{bottom:767.933333pt;}
.y66{bottom:768.093333pt;}
.yd7{bottom:769.213333pt;}
.y163{bottom:770.653333pt;}
.y128{bottom:781.573333pt;}
.y9c{bottom:781.893333pt;}
.yf{bottom:783.173333pt;}
.y65{bottom:783.493333pt;}
.yd6{bottom:785.253333pt;}
.yfd{bottom:785.413333pt;}
.y162{bottom:786.053333pt;}
.y127{bottom:797.733333pt;}
.y64{bottom:798.693333pt;}
.y9b{bottom:799.813333pt;}
.yd5{bottom:801.253333pt;}
.y161{bottom:801.413333pt;}
.yfb{bottom:802.853333pt;}
.y63{bottom:814.053333pt;}
.y160{bottom:816.773333pt;}
.yd4{bottom:817.253333pt;}
.y9a{bottom:817.893333pt;}
.y62{bottom:829.413333pt;}
.y15f{bottom:832.133333pt;}
.yd3{bottom:833.253333pt;}
.y99{bottom:835.813333pt;}
.yfa{bottom:838.533333pt;}
.y61{bottom:844.773333pt;}
.y15e{bottom:847.493333pt;}
.yd2{bottom:849.253333pt;}
.y98{bottom:853.893333pt;}
.y60{bottom:860.133333pt;}
.y15d{bottom:862.693333pt;}
.yd1{bottom:865.253333pt;}
.yf9{bottom:869.253333pt;}
.y97{bottom:871.813333pt;}
.y5f{bottom:875.493333pt;}
.y15c{bottom:878.053333pt;}
.yd0{bottom:881.253333pt;}
.yf8{bottom:884.613333pt;}
.y96{bottom:889.893333pt;}
.y5e{bottom:890.693333pt;}
.y15b{bottom:891.173333pt;}
.ycf{bottom:897.253333pt;}
.yf7{bottom:899.813333pt;}
.y5d{bottom:906.053333pt;}
.y95{bottom:907.813333pt;}
.y15a{bottom:911.813333pt;}
.yce{bottom:913.253333pt;}
.yf6{bottom:916.133333pt;}
.y5c{bottom:921.413333pt;}
.y94{bottom:925.893333pt;}
.yd{bottom:926.053333pt;}
.ycd{bottom:929.253333pt;}
.yf5{bottom:932.453333pt;}
.y5b{bottom:936.773333pt;}
.y92{bottom:943.813333pt;}
.ycc{bottom:945.253333pt;}
.y6{bottom:948.453333pt;}
.yf4{bottom:948.773333pt;}
.y5a{bottom:952.133333pt;}
.y159{bottom:953.253333pt;}
.ycb{bottom:961.253333pt;}
.y90{bottom:961.893333pt;}
.yf3{bottom:964.133333pt;}
.y59{bottom:967.493333pt;}
.y158{bottom:973.893333pt;}
.yca{bottom:977.253333pt;}
.y58{bottom:982.693333pt;}
.yc9{bottom:993.253333pt;}
.y157{bottom:994.533333pt;}
.y57{bottom:998.053333pt;}
.yc7{bottom:1009.253333pt;}
.y56{bottom:1013.440000pt;}
.y156{bottom:1015.200000pt;}
.yc6{bottom:1025.280000pt;}
.y55{bottom:1028.800000pt;}
.y155{bottom:1035.840000pt;}
.y54{bottom:1044.160000pt;}
.h21{height:15.200000pt;}
.h22{height:15.232000pt;}
.h1f{height:15.360000pt;}
.h20{height:15.392000pt;}
.h2a{height:16.000000pt;}
.h2d{height:16.032000pt;}
.h2c{height:16.160000pt;}
.h2b{height:16.192000pt;}
.h2e{height:16.320000pt;}
.h2f{height:16.352000pt;}
.h23{height:17.280000pt;}
.h26{height:17.312000pt;}
.h24{height:17.440000pt;}
.h25{height:17.472000pt;}
.h28{height:18.560000pt;}
.h27{height:18.720000pt;}
.h30{height:20.000000pt;}
.h31{height:20.032000pt;}
.hc{height:22.080000pt;}
.h11{height:25.750000pt;}
.h1c{height:26.080000pt;}
.h13{height:26.272000pt;}
.h2{height:29.312000pt;}
.h29{height:31.520000pt;}
.h9{height:32.160000pt;}
.h1d{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h19{height:37.583438pt;}
.h12{height:38.625000pt;}
.h1e{height:38.672812pt;}
.hb{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h6{height:49.766250pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:142.880000pt;}
.h15{height:321.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:55.200000pt;}
.w3{width:64.960000pt;}
.w18{width:64.992000pt;}
.w1a{width:72.192000pt;}
.w17{width:72.320000pt;}
.w1c{width:72.480000pt;}
.w1d{width:72.512000pt;}
.w19{width:73.440000pt;}
.w16{width:86.272000pt;}
.w14{width:86.912000pt;}
.w20{width:97.600000pt;}
.w25{width:98.080000pt;}
.w21{width:122.592000pt;}
.w22{width:122.880000pt;}
.w26{width:123.072000pt;}
.w27{width:123.232000pt;}
.w28{width:123.360000pt;}
.w5{width:135.066667pt;}
.w1f{width:177.026667pt;}
.w24{width:177.986667pt;}
.w8{width:192.066667pt;}
.w12{width:208.506667pt;}
.we{width:216.866667pt;}
.w10{width:216.986667pt;}
.wf{width:217.146667pt;}
.w11{width:217.986667pt;}
.w13{width:220.666667pt;}
.wc{width:281.666667pt;}
.wb{width:313.026667pt;}
.wa{width:334.946667pt;}
.wd{width:359.106667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w15{width:560.893333pt;}
.w2{width:584.933333pt;}
.w1e{width:645.573333pt;}
.w23{width:648.613333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.400000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xa{left:24.032000pt;}
.x2a{left:26.432000pt;}
.x29{left:27.552000pt;}
.x27{left:36.352000pt;}
.x20{left:46.560000pt;}
.x39{left:60.320000pt;}
.xb{left:64.026667pt;}
.x45{left:67.360000pt;}
.x1{left:72.000000pt;}
.x2e{left:73.280000pt;}
.x43{left:77.440000pt;}
.x3b{left:78.746667pt;}
.x3d{left:82.240000pt;}
.x40{left:84.000000pt;}
.x14{left:85.791988pt;}
.x4{left:87.226667pt;}
.x1d{left:92.986667pt;}
.x2b{left:96.031988pt;}
.x3f{left:99.040000pt;}
.x42{left:102.720000pt;}
.x41{left:108.800000pt;}
.x15{left:109.791988pt;}
.x2c{left:120.031988pt;}
.x28{left:160.346667pt;}
.x10{left:191.266667pt;}
.x22{left:195.066667pt;}
.x23{left:197.826667pt;}
.x24{left:200.360000pt;}
.x21{left:204.386667pt;}
.x5{left:207.066667pt;}
.x2f{left:233.306667pt;}
.x8{left:241.986667pt;}
.x38{left:250.466667pt;}
.x1c{left:251.586655pt;}
.x11{left:264.066667pt;}
.xc{left:269.986667pt;}
.xf{left:276.386667pt;}
.xe{left:278.306667pt;}
.x36{left:280.866667pt;}
.x47{left:281.986667pt;}
.x37{left:287.586667pt;}
.x48{left:289.026667pt;}
.x1a{left:290.146667pt;}
.x1e{left:291.266667pt;}
.x44{left:294.146667pt;}
.x6{left:295.106667pt;}
.x30{left:298.946667pt;}
.x46{left:302.306655pt;}
.x26{left:307.266655pt;}
.x7{left:312.226667pt;}
.x16{left:313.506655pt;}
.x18{left:320.546655pt;}
.xd{left:324.866667pt;}
.x2d{left:334.146655pt;}
.x3a{left:348.706667pt;}
.x49{left:350.146667pt;}
.x19{left:354.946667pt;}
.x31{left:373.186667pt;}
.x9{left:390.666667pt;}
.x17{left:408.226667pt;}
.x32{left:446.013333pt;}
.x3c{left:472.093333pt;}
.x4a{left:474.013333pt;}
.x1f{left:500.573333pt;}
.x33{left:501.853333pt;}
.x1b{left:507.933333pt;}
.x25{left:545.853322pt;}
.x34{left:574.973333pt;}
.x3e{left:595.333333pt;}
.x4b{left:597.893333pt;}
.x35{left:648.133333pt;}
.x3{left:656.933333pt;}
}




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