
    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_9f437c7e004372ce1019802a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a52dfd9ef18e5502018b2262.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5ca3de198a73a9345f6e056c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.786133;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_1d9f6d518caa82eb0725e460.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fcb1565b1f735dbe1b51a29c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_61e63ae98987fa0b2b9ad068.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_144dfd486c8857ebc423c739.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9c0d92a730b19e9c15506c1e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.830078;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_f2e7945d5581a8e8b4cfef68.woff')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9d65c429fcd3e2275c5aadac.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938513;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_90a2856f582f4ffaf72e0056.woff')format("woff");}.ffe{font-family:ffe;line-height:0.786133;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_feddabd75ca0c743542c8c54.woff')format("woff");}.fff{font-family:fff;line-height:0.896973;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_2cef453bc83f7805bb1433d3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.923438;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_7b030e0fee3c90900bf9256b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.929688;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_0f7bbfa93a332b958da2f36b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.lsc{letter-spacing:-3.240000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.702000px;}
.lsd{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.017280px;}
.ls10{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.126000px;}
.ls4{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:25.308000px;}
.ls0{letter-spacing:28.062720px;}
.ls11{letter-spacing:52.668000px;}
.lsf{letter-spacing:52.812000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-54.000000px;}
.ws1{word-spacing:-20.340000px;}
.ws7{word-spacing:-19.457280px;}
.ws0{word-spacing:-19.440000px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.626000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.140000px;}
.wsa{word-spacing:-10.260000px;}
.ws3{word-spacing:0.000000px;}
._28{margin-left:-6.109680px;}
._20{margin-left:-4.943520px;}
._1b{margin-left:-3.912480px;}
._13{margin-left:-2.592000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._9{width:2.674320px;}
._16{width:3.838800px;}
._4{width:4.865040px;}
._3{width:6.210000px;}
._27{width:7.236000px;}
._a{width:8.262000px;}
._6{width:9.455040px;}
._5{width:10.530000px;}
._e{width:11.772000px;}
._c{width:14.501520px;}
._b{width:15.660000px;}
._1e{width:16.750800px;}
._21{width:17.784960px;}
._d{width:18.792000px;}
._25{width:19.877040px;}
._1a{width:21.114000px;}
._11{width:22.956960px;}
._10{width:23.981040px;}
._f{width:25.002000px;}
._8{width:26.352000px;}
._7{width:27.432000px;}
._12{width:28.512000px;}
._22{width:29.754000px;}
._19{width:31.140000px;}
._1d{width:32.886000px;}
._1c{width:34.290000px;}
._23{width:35.472000px;}
._18{width:36.767520px;}
._1f{width:38.027760px;}
._29{width:39.312000px;}
._2a{width:40.384320px;}
._17{width:44.135520px;}
._14{width:45.696000px;}
._15{width:47.128320px;}
._26{width:55.026000px;}
._24{width:142.410000px;}
._2b{width:145.422000px;}
._2c{width:224.586000px;}
._2{width:2940.187200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:2.880000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y3b{bottom:-8.100000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.600000px;}
.y2f{bottom:3.780000px;}
.y2{bottom:5.580000px;}
.y4{bottom:6.480000px;}
.y48{bottom:7.170000px;}
.yb9{bottom:9.720000px;}
.y138{bottom:9.750000px;}
.yc4{bottom:9.765000px;}
.ybe{bottom:9.900000px;}
.yb6{bottom:10.980000px;}
.y34{bottom:12.780000px;}
.y38{bottom:14.220000px;}
.y36{bottom:16.200000px;}
.y13b{bottom:16.380000px;}
.y3a{bottom:19.800000px;}
.yc0{bottom:19.980000px;}
.y8{bottom:22.500000px;}
.yd3{bottom:27.540000px;}
.yc3{bottom:27.585000px;}
.yb8{bottom:27.720000px;}
.ybd{bottom:27.750000px;}
.yb5{bottom:29.880000px;}
.ycd{bottom:32.040000px;}
.y13f{bottom:34.380000px;}
.y33{bottom:36.900000px;}
.y7{bottom:41.040000px;}
.yd2{bottom:45.390000px;}
.yc2{bottom:45.405000px;}
.ybc{bottom:45.570000px;}
.ycc{bottom:50.040000px;}
.y6{bottom:56.520000px;}
.yd1{bottom:63.210000px;}
.ybb{bottom:63.390000px;}
.ycb{bottom:67.860000px;}
.yc9{bottom:81.180000px;}
.yd0{bottom:81.210000px;}
.yd5{bottom:81.720000px;}
.y136{bottom:84.240000px;}
.yca{bottom:85.680000px;}
.ya5{bottom:85.860000px;}
.y23{bottom:86.220000px;}
.y9b{bottom:86.760000px;}
.y7e{bottom:89.820000px;}
.yd4{bottom:90.540000px;}
.y40{bottom:92.595000px;}
.yea{bottom:95.580000px;}
.y2d{bottom:95.940000px;}
.y63{bottom:98.100000px;}
.ycf{bottom:99.030000px;}
.y135{bottom:102.060000px;}
.yc8{bottom:103.500000px;}
.ya4{bottom:103.680000px;}
.y22{bottom:104.040000px;}
.y9a{bottom:104.580000px;}
.y68{bottom:107.100000px;}
.y168{bottom:111.060000px;}
.y3f{bottom:112.575000px;}
.ye9{bottom:113.400000px;}
.y2c{bottom:113.760000px;}
.y7d{bottom:114.660000px;}
.y62{bottom:115.920000px;}
.ybf{bottom:117.360000px;}
.y134{bottom:119.880000px;}
.yc7{bottom:121.320000px;}
.ya3{bottom:121.500000px;}
.y21{bottom:121.860000px;}
.ye3{bottom:122.400000px;}
.y99{bottom:122.580000px;}
.y67{bottom:124.920000px;}
.y3e{bottom:132.375000px;}
.y61{bottom:133.740000px;}
.y133{bottom:137.700000px;}
.y167{bottom:137.880000px;}
.yc6{bottom:139.140000px;}
.ya2{bottom:139.320000px;}
.y20{bottom:139.680000px;}
.yce{bottom:139.860000px;}
.ye2{bottom:140.220000px;}
.y98{bottom:140.400000px;}
.y2b{bottom:140.580000px;}
.y66{bottom:142.740000px;}
.y31{bottom:145.080000px;}
.y60{bottom:151.560000px;}
.y3d{bottom:152.175000px;}
.yba{bottom:155.160000px;}
.y132{bottom:155.520000px;}
.ya1{bottom:157.140000px;}
.y1f{bottom:157.500000px;}
.ye8{bottom:158.220000px;}
.y2a{bottom:158.400000px;}
.y191{bottom:159.660000px;}
.y65{bottom:160.560000px;}
.y166{bottom:164.700000px;}
.y97{bottom:167.220000px;}
.y5f{bottom:169.560000px;}
.ya0{bottom:175.140000px;}
.y1e{bottom:175.320000px;}
.ye7{bottom:176.070000px;}
.y29{bottom:176.430000px;}
.y64{bottom:178.590000px;}
.y131{bottom:182.550000px;}
.y96{bottom:185.070000px;}
.y190{bottom:186.510000px;}
.y165{bottom:191.550000px;}
.y9f{bottom:192.990000px;}
.y1d{bottom:193.350000px;}
.ye6{bottom:193.890000px;}
.y28{bottom:194.250000px;}
.y5e{bottom:196.410000px;}
.y130{bottom:200.370000px;}
.y95{bottom:202.890000px;}
.y1c{bottom:211.170000px;}
.ye5{bottom:211.710000px;}
.y27{bottom:212.070000px;}
.y18f{bottom:213.330000px;}
.y5d{bottom:214.230000px;}
.y116{bottom:215.850000px;}
.y12f{bottom:218.190000px;}
.y164{bottom:218.370000px;}
.ye1{bottom:220.710000px;}
.y94{bottom:220.890000px;}
.y9e{bottom:222.870000px;}
.y1b{bottom:228.990000px;}
.ye4{bottom:229.530000px;}
.y26{bottom:229.890000px;}
.y5c{bottom:232.050000px;}
.y12e{bottom:236.010000px;}
.yb7{bottom:236.370000px;}
.ye0{bottom:238.530000px;}
.y93{bottom:238.710000px;}
.y18e{bottom:240.330000px;}
.y163{bottom:241.050000px;}
.y115{bottom:242.670000px;}
.y9d{bottom:243.030000px;}
.y1a{bottom:246.810000px;}
.y25{bottom:247.710000px;}
.y5b{bottom:249.870000px;}
.y12d{bottom:253.830000px;}
.ydf{bottom:256.350000px;}
.yc5{bottom:256.710000px;}
.y162{bottom:258.870000px;}
.y19{bottom:264.630000px;}
.y92{bottom:265.530000px;}
.y18d{bottom:267.150000px;}
.y5a{bottom:267.690000px;}
.y24{bottom:268.050000px;}
.y9c{bottom:268.770000px;}
.y114{bottom:269.670000px;}
.y12c{bottom:271.650000px;}
.y161{bottom:281.010000px;}
.yb4{bottom:281.910000px;}
.y18{bottom:282.630000px;}
.y91{bottom:283.350000px;}
.y113{bottom:287.490000px;}
.y12b{bottom:289.650000px;}
.y18c{bottom:293.970000px;}
.y59{bottom:294.690000px;}
.y17{bottom:300.450000px;}
.y90{bottom:301.170000px;}
.y160{bottom:304.770000px;}
.y112{bottom:305.310000px;}
.y12a{bottom:307.470000px;}
.yde{bottom:310.170000px;}
.y16{bottom:318.270000px;}
.y8f{bottom:318.990000px;}
.y58{bottom:319.350000px;}
.y18b{bottom:320.790000px;}
.y111{bottom:323.130000px;}
.y129{bottom:325.290000px;}
.y15f{bottom:327.990000px;}
.yb3{bottom:334.830000px;}
.y15{bottom:336.090000px;}
.y8e{bottom:336.990000px;}
.y110{bottom:340.950000px;}
.y128{bottom:343.110000px;}
.y18a{bottom:345.270000px;}
.y14{bottom:353.910000px;}
.y8d{bottom:354.810000px;}
.y10f{bottom:358.950000px;}
.y189{bottom:360.930000px;}
.yb2{bottom:361.650000px;}
.y127{bottom:369.930000px;}
.y13{bottom:371.730000px;}
.y8c{bottom:372.630000px;}
.y188{bottom:376.410000px;}
.y10e{bottom:376.770000px;}
.yb1{bottom:379.650000px;}
.y15e{bottom:381.630000px;}
.y126{bottom:387.750000px;}
.y8b{bottom:390.450000px;}
.y187{bottom:391.890000px;}
.y12{bottom:392.070000px;}
.y10d{bottom:394.590000px;}
.yb0{bottom:397.470000px;}
.y125{bottom:405.750000px;}
.y15d{bottom:406.650000px;}
.y186{bottom:407.370000px;}
.y8a{bottom:408.270000px;}
.y10c{bottom:412.410000px;}
.yc1{bottom:413.850000px;}
.yaf{bottom:415.290000px;}
.y185{bottom:423.075000px;}
.y124{bottom:423.615000px;}
.y11{bottom:427.575000px;}
.y10b{bottom:430.275000px;}
.yae{bottom:433.155000px;}
.y89{bottom:435.315000px;}
.y184{bottom:438.555000px;}
.y15c{bottom:439.095000px;}
.y123{bottom:441.435000px;}
.y3c{bottom:444.420000px;}
.yad{bottom:450.975000px;}
.y183{bottom:454.035000px;}
.y15b{bottom:456.915000px;}
.y10a{bottom:457.095000px;}
.y122{bottom:459.255000px;}
.y88{bottom:459.795000px;}
.y182{bottom:469.515000px;}
.y15a{bottom:474.735000px;}
.y109{bottom:475.095000px;}
.y121{bottom:477.075000px;}
.yac{bottom:477.795000px;}
.y181{bottom:485.175000px;}
.y42{bottom:488.415000px;}
.y159{bottom:492.555000px;}
.y108{bottom:492.915000px;}
.y7c{bottom:493.455000px;}
.y120{bottom:495.075000px;}
.y180{bottom:500.655000px;}
.yab{bottom:502.635000px;}
.y158{bottom:510.375000px;}
.y107{bottom:510.735000px;}
.y17f{bottom:516.135000px;}
.y41{bottom:517.215000px;}
.y7b{bottom:520.275000px;}
.y157{bottom:528.375000px;}
.y106{bottom:528.555000px;}
.y75{bottom:529.095000px;}
.y17e{bottom:531.615000px;}
.y7a{bottom:538.095000px;}
.y11f{bottom:539.715000px;}
.y156{bottom:546.195000px;}
.y105{bottom:546.375000px;}
.y74{bottom:546.915000px;}
.y17d{bottom:547.275000px;}
.y79{bottom:555.915000px;}
.y11e{bottom:557.535000px;}
.y17c{bottom:562.755000px;}
.y155{bottom:564.015000px;}
.y104{bottom:564.375000px;}
.y73{bottom:564.915000px;}
.y78{bottom:573.915000px;}
.y11d{bottom:575.355000px;}
.y17b{bottom:578.235000px;}
.y154{bottom:581.835000px;}
.y103{bottom:582.195000px;}
.y72{bottom:582.735000px;}
.y77{bottom:591.735000px;}
.y11c{bottom:593.175000px;}
.y17a{bottom:593.715000px;}
.y153{bottom:599.655000px;}
.y102{bottom:600.015000px;}
.y71{bottom:600.555000px;}
.ydd{bottom:601.095000px;}
.y179{bottom:609.375000px;}
.y76{bottom:609.555000px;}
.y57{bottom:615.135000px;}
.y152{bottom:617.655000px;}
.y101{bottom:617.835000px;}
.y11b{bottom:620.175000px;}
.y178{bottom:624.855000px;}
.y70{bottom:627.375000px;}
.ydc{bottom:627.915000px;}
.y10{bottom:632.415000px;}
.y151{bottom:635.475000px;}
.y100{bottom:635.655000px;}
.y56{bottom:639.615000px;}
.y177{bottom:642.675000px;}
.y11a{bottom:644.835000px;}
.y6f{bottom:652.035000px;}
.ydb{bottom:652.755000px;}
.y150{bottom:653.295000px;}
.yff{bottom:653.475000px;}
.y55{bottom:655.095000px;}
.y176{bottom:660.525000px;}
.y14f{bottom:671.145000px;}
.yf{bottom:671.505000px;}
.y175{bottom:678.345000px;}
.y14e{bottom:688.965000px;}
.yfe{bottom:689.325000px;}
.ye{bottom:690.405000px;}
.y54{bottom:694.005000px;}
.y174{bottom:696.345000px;}
.y39{bottom:696.705000px;}
.y14d{bottom:706.785000px;}
.yfd{bottom:707.145000px;}
.y173{bottom:714.165000px;}
.y53{bottom:718.665000px;}
.yaa{bottom:719.385000px;}
.y14c{bottom:724.785000px;}
.yfc{bottom:724.965000px;}
.y172{bottom:731.985000px;}
.y14b{bottom:742.605000px;}
.yfb{bottom:742.785000px;}
.ya9{bottom:746.205000px;}
.yd{bottom:746.565000px;}
.y171{bottom:749.805000px;}
.y37{bottom:752.505000px;}
.y14a{bottom:760.425000px;}
.yfa{bottom:760.785000px;}
.y170{bottom:767.625000px;}
.ya8{bottom:770.865000px;}
.y149{bottom:778.245000px;}
.yf9{bottom:778.605000px;}
.y16f{bottom:789.765000px;}
.y148{bottom:796.065000px;}
.yf8{bottom:796.425000px;}
.yc{bottom:796.965000px;}
.y35{bottom:803.265000px;}
.yf7{bottom:814.245000px;}
.y147{bottom:816.405000px;}
.y16e{bottom:816.765000px;}
.yf6{bottom:832.065000px;}
.y16d{bottom:844.125000px;}
.y146{bottom:848.805000px;}
.yf5{bottom:849.885000px;}
.y32{bottom:859.965000px;}
.y145{bottom:866.625000px;}
.yf4{bottom:867.885000px;}
.y16c{bottom:870.945000px;}
.y87{bottom:876.885000px;}
.y144{bottom:884.445000px;}
.yf3{bottom:885.705000px;}
.y16b{bottom:893.445000px;}
.y119{bottom:898.485000px;}
.y143{bottom:902.310000px;}
.yda{bottom:903.750000px;}
.y86{bottom:903.930000px;}
.y16a{bottom:911.310000px;}
.yf2{bottom:912.570000px;}
.y142{bottom:920.310000px;}
.y85{bottom:921.750000px;}
.y118{bottom:925.350000px;}
.y169{bottom:929.310000px;}
.yf1{bottom:930.390000px;}
.yd7{bottom:930.570000px;}
.yb{bottom:934.350000px;}
.y84{bottom:939.570000px;}
.y30{bottom:941.190000px;}
.yf0{bottom:948.210000px;}
.yd6{bottom:948.390000px;}
.y117{bottom:950.010000px;}
.y47{bottom:955.800000px;}
.y83{bottom:957.390000px;}
.yd9{bottom:966.210000px;}
.y141{bottom:969.450000px;}
.y82{bottom:975.210000px;}
.yef{bottom:984.030000px;}
.yd8{bottom:984.210000px;}
.y46{bottom:989.250000px;}
.y81{bottom:993.210000px;}
.y13e{bottom:996.990000px;}
.y140{bottom:1000.410000px;}
.ya7{bottom:1002.030000px;}
.yee{bottom:1010.850000px;}
.y80{bottom:1011.030000px;}
.y45{bottom:1015.530000px;}
.y52{bottom:1019.850000px;}
.yed{bottom:1028.670000px;}
.y7f{bottom:1028.850000px;}
.y6e{bottom:1037.670000px;}
.y44{bottom:1041.810000px;}
.yec{bottom:1046.490000px;}
.y51{bottom:1046.670000px;}
.y13d{bottom:1049.190000px;}
.ya6{bottom:1055.490000px;}
.yeb{bottom:1064.310000px;}
.y50{bottom:1064.490000px;}
.y43{bottom:1068.270000px;}
.y6d{bottom:1073.310000px;}
.y13a{bottom:1076.910000px;}
.y13c{bottom:1080.150000px;}
.y4f{bottom:1082.310000px;}
.y6c{bottom:1091.310000px;}
.y4e{bottom:1100.310000px;}
.ya{bottom:1107.510000px;}
.y6b{bottom:1109.130000px;}
.y139{bottom:1111.110000px;}
.y4d{bottom:1118.130000px;}
.y6a{bottom:1126.950000px;}
.y4c{bottom:1135.950000px;}
.y137{bottom:1138.830000px;}
.y69{bottom:1144.800000px;}
.y4b{bottom:1153.800000px;}
.y2e{bottom:1167.840000px;}
.y4a{bottom:1171.620000px;}
.y49{bottom:1189.440000px;}
.y1{bottom:1195.380000px;}
.y5{bottom:1215.000000px;}
.y3{bottom:1224.000000px;}
.h29{height:2.010938px;}
.h2{height:17.640000px;}
.he{height:20.700000px;}
.h4{height:21.960000px;}
.h2a{height:26.820000px;}
.h26{height:26.856000px;}
.h27{height:27.000000px;}
.h28{height:33.480000px;}
.h3{height:34.036523px;}
.h5{height:36.068555px;}
.h21{height:37.080000px;}
.hb{height:37.705078px;}
.h8{height:38.100586px;}
.h15{height:38.700000px;}
.h1c{height:39.313477px;}
.h1a{height:42.164648px;}
.h16{height:44.100000px;}
.h13{height:44.280000px;}
.h2e{height:44.296875px;}
.h7{height:44.507812px;}
.h2c{height:44.640000px;}
.h1f{height:44.820000px;}
.h2d{height:44.824219px;}
.h1e{height:44.929688px;}
.h6{height:46.251562px;}
.h17{height:46.736719px;}
.h2f{height:46.801758px;}
.h1d{height:46.980000px;}
.h14{height:47.998125px;}
.h19{height:49.255313px;}
.h2b{height:51.480000px;}
.ha{height:53.709961px;}
.hc{height:54.864844px;}
.h9{height:55.825312px;}
.hd{height:56.611406px;}
.h22{height:57.996000px;}
.h12{height:59.436914px;}
.hf{height:65.554453px;}
.h11{height:68.616000px;}
.h25{height:73.705078px;}
.h20{height:80.496000px;}
.h24{height:116.136000px;}
.h1b{height:132.480000px;}
.h23{height:156.240000px;}
.h10{height:160.560000px;}
.h18{height:175.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:84.816000px;}
.w2{width:85.320000px;}
.wc{width:135.180000px;}
.we{width:135.396000px;}
.wf{width:150.120000px;}
.wd{width:150.150000px;}
.w10{width:194.070000px;}
.w13{width:224.670000px;}
.w14{width:252.210000px;}
.w11{width:278.355000px;}
.w12{width:303.330000px;}
.w3{width:470.160000px;}
.wa{width:500.940000px;}
.w5{width:705.240000px;}
.w9{width:774.540000px;}
.w6{width:783.510000px;}
.w7{width:784.410000px;}
.w8{width:784.590000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x28{left:7.740000px;}
.xf{left:10.800000px;}
.x3b{left:11.880000px;}
.x3c{left:14.580000px;}
.x38{left:21.420000px;}
.x3e{left:34.740000px;}
.x35{left:39.240000px;}
.x30{left:42.156000px;}
.x3d{left:43.596000px;}
.x36{left:45.936000px;}
.x3a{left:47.016000px;}
.x10{left:49.536000px;}
.x5{left:53.999987px;}
.x2f{left:57.780000px;}
.x14{left:61.200000px;}
.x15{left:71.999987px;}
.x40{left:78.120000px;}
.x22{left:80.999987px;}
.xe{left:92.700000px;}
.x1{left:100.116000px;}
.x3f{left:108.720000px;}
.x32{left:112.725000px;}
.x34{left:124.560000px;}
.x29{left:140.436000px;}
.x39{left:151.785000px;}
.x6{left:161.669987px;}
.x1b{left:173.009987px;}
.xa{left:174.089987px;}
.x1d{left:176.609987px;}
.x1a{left:177.915000px;}
.x19{left:198.360000px;}
.x13{left:201.810000px;}
.x31{left:252.750000px;}
.x18{left:256.889987px;}
.x25{left:262.469987px;}
.x16{left:265.529987px;}
.x2a{left:276.330000px;}
.x2d{left:287.849987px;}
.x11{left:320.655000px;}
.x12{left:323.535000px;}
.x20{left:331.994987px;}
.x23{left:343.514987px;}
.x7{left:357.014987px;}
.x17{left:358.634987px;}
.x3{left:367.920000px;}
.x4{left:460.230000px;}
.xc{left:465.914987px;}
.xd{left:492.944987px;}
.x41{left:519.944987px;}
.x33{left:531.825000px;}
.x37{left:542.085000px;}
.x2b{left:552.165000px;}
.x2c{left:688.290000px;}
.x21{left:806.909987px;}
.x26{left:807.989987px;}
.x2e{left:816.989987px;}
.x1e{left:818.249987px;}
.x27{left:820.049987px;}
.x24{left:824.549987px;}
.x1f{left:830.489987px;}
.x1c{left:832.469987px;}
.x8{left:837.149987px;}
.x9{left:839.309987px;}
.xb{left:846.149987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.lsc{letter-spacing:-2.880000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.624000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.015360pt;}
.ls10{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.112000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:22.496000pt;}
.ls0{letter-spacing:24.944640pt;}
.ls11{letter-spacing:46.816000pt;}
.lsf{letter-spacing:46.944000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws1{word-spacing:-18.080000pt;}
.ws7{word-spacing:-17.295360pt;}
.ws0{word-spacing:-17.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.112000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.680000pt;}
.wsa{word-spacing:-9.120000pt;}
.ws3{word-spacing:0.000000pt;}
._28{margin-left:-5.430827pt;}
._20{margin-left:-4.394240pt;}
._1b{margin-left:-3.477760pt;}
._13{margin-left:-2.304000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._9{width:2.377173pt;}
._16{width:3.412267pt;}
._4{width:4.324480pt;}
._3{width:5.520000pt;}
._27{width:6.432000pt;}
._a{width:7.344000pt;}
._6{width:8.404480pt;}
._5{width:9.360000pt;}
._e{width:10.464000pt;}
._c{width:12.890240pt;}
._b{width:13.920000pt;}
._1e{width:14.889600pt;}
._21{width:15.808853pt;}
._d{width:16.704000pt;}
._25{width:17.668480pt;}
._1a{width:18.768000pt;}
._11{width:20.406187pt;}
._10{width:21.316480pt;}
._f{width:22.224000pt;}
._8{width:23.424000pt;}
._7{width:24.384000pt;}
._12{width:25.344000pt;}
._22{width:26.448000pt;}
._19{width:27.680000pt;}
._1d{width:29.232000pt;}
._1c{width:30.480000pt;}
._23{width:31.530667pt;}
._18{width:32.682240pt;}
._1f{width:33.802453pt;}
._29{width:34.944000pt;}
._2a{width:35.897173pt;}
._17{width:39.231573pt;}
._14{width:40.618667pt;}
._15{width:41.891840pt;}
._26{width:48.912000pt;}
._24{width:126.586667pt;}
._2b{width:129.264000pt;}
._2c{width:199.632000pt;}
._2{width:2613.499733pt;}
.fs8{font-size:2.560000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y3b{bottom:-7.200000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.200000pt;}
.y2f{bottom:3.360000pt;}
.y2{bottom:4.960000pt;}
.y4{bottom:5.760000pt;}
.y48{bottom:6.373333pt;}
.yb9{bottom:8.640000pt;}
.y138{bottom:8.666667pt;}
.yc4{bottom:8.680000pt;}
.ybe{bottom:8.800000pt;}
.yb6{bottom:9.760000pt;}
.y34{bottom:11.360000pt;}
.y38{bottom:12.640000pt;}
.y36{bottom:14.400000pt;}
.y13b{bottom:14.560000pt;}
.y3a{bottom:17.600000pt;}
.yc0{bottom:17.760000pt;}
.y8{bottom:20.000000pt;}
.yd3{bottom:24.480000pt;}
.yc3{bottom:24.520000pt;}
.yb8{bottom:24.640000pt;}
.ybd{bottom:24.666667pt;}
.yb5{bottom:26.560000pt;}
.ycd{bottom:28.480000pt;}
.y13f{bottom:30.560000pt;}
.y33{bottom:32.800000pt;}
.y7{bottom:36.480000pt;}
.yd2{bottom:40.346667pt;}
.yc2{bottom:40.360000pt;}
.ybc{bottom:40.506667pt;}
.ycc{bottom:44.480000pt;}
.y6{bottom:50.240000pt;}
.yd1{bottom:56.186667pt;}
.ybb{bottom:56.346667pt;}
.ycb{bottom:60.320000pt;}
.yc9{bottom:72.160000pt;}
.yd0{bottom:72.186667pt;}
.yd5{bottom:72.640000pt;}
.y136{bottom:74.880000pt;}
.yca{bottom:76.160000pt;}
.ya5{bottom:76.320000pt;}
.y23{bottom:76.640000pt;}
.y9b{bottom:77.120000pt;}
.y7e{bottom:79.840000pt;}
.yd4{bottom:80.480000pt;}
.y40{bottom:82.306667pt;}
.yea{bottom:84.960000pt;}
.y2d{bottom:85.280000pt;}
.y63{bottom:87.200000pt;}
.ycf{bottom:88.026667pt;}
.y135{bottom:90.720000pt;}
.yc8{bottom:92.000000pt;}
.ya4{bottom:92.160000pt;}
.y22{bottom:92.480000pt;}
.y9a{bottom:92.960000pt;}
.y68{bottom:95.200000pt;}
.y168{bottom:98.720000pt;}
.y3f{bottom:100.066667pt;}
.ye9{bottom:100.800000pt;}
.y2c{bottom:101.120000pt;}
.y7d{bottom:101.920000pt;}
.y62{bottom:103.040000pt;}
.ybf{bottom:104.320000pt;}
.y134{bottom:106.560000pt;}
.yc7{bottom:107.840000pt;}
.ya3{bottom:108.000000pt;}
.y21{bottom:108.320000pt;}
.ye3{bottom:108.800000pt;}
.y99{bottom:108.960000pt;}
.y67{bottom:111.040000pt;}
.y3e{bottom:117.666667pt;}
.y61{bottom:118.880000pt;}
.y133{bottom:122.400000pt;}
.y167{bottom:122.560000pt;}
.yc6{bottom:123.680000pt;}
.ya2{bottom:123.840000pt;}
.y20{bottom:124.160000pt;}
.yce{bottom:124.320000pt;}
.ye2{bottom:124.640000pt;}
.y98{bottom:124.800000pt;}
.y2b{bottom:124.960000pt;}
.y66{bottom:126.880000pt;}
.y31{bottom:128.960000pt;}
.y60{bottom:134.720000pt;}
.y3d{bottom:135.266667pt;}
.yba{bottom:137.920000pt;}
.y132{bottom:138.240000pt;}
.ya1{bottom:139.680000pt;}
.y1f{bottom:140.000000pt;}
.ye8{bottom:140.640000pt;}
.y2a{bottom:140.800000pt;}
.y191{bottom:141.920000pt;}
.y65{bottom:142.720000pt;}
.y166{bottom:146.400000pt;}
.y97{bottom:148.640000pt;}
.y5f{bottom:150.720000pt;}
.ya0{bottom:155.680000pt;}
.y1e{bottom:155.840000pt;}
.ye7{bottom:156.506667pt;}
.y29{bottom:156.826667pt;}
.y64{bottom:158.746667pt;}
.y131{bottom:162.266667pt;}
.y96{bottom:164.506667pt;}
.y190{bottom:165.786667pt;}
.y165{bottom:170.266667pt;}
.y9f{bottom:171.546667pt;}
.y1d{bottom:171.866667pt;}
.ye6{bottom:172.346667pt;}
.y28{bottom:172.666667pt;}
.y5e{bottom:174.586667pt;}
.y130{bottom:178.106667pt;}
.y95{bottom:180.346667pt;}
.y1c{bottom:187.706667pt;}
.ye5{bottom:188.186667pt;}
.y27{bottom:188.506667pt;}
.y18f{bottom:189.626667pt;}
.y5d{bottom:190.426667pt;}
.y116{bottom:191.866667pt;}
.y12f{bottom:193.946667pt;}
.y164{bottom:194.106667pt;}
.ye1{bottom:196.186667pt;}
.y94{bottom:196.346667pt;}
.y9e{bottom:198.106667pt;}
.y1b{bottom:203.546667pt;}
.ye4{bottom:204.026667pt;}
.y26{bottom:204.346667pt;}
.y5c{bottom:206.266667pt;}
.y12e{bottom:209.786667pt;}
.yb7{bottom:210.106667pt;}
.ye0{bottom:212.026667pt;}
.y93{bottom:212.186667pt;}
.y18e{bottom:213.626667pt;}
.y163{bottom:214.266667pt;}
.y115{bottom:215.706667pt;}
.y9d{bottom:216.026667pt;}
.y1a{bottom:219.386667pt;}
.y25{bottom:220.186667pt;}
.y5b{bottom:222.106667pt;}
.y12d{bottom:225.626667pt;}
.ydf{bottom:227.866667pt;}
.yc5{bottom:228.186667pt;}
.y162{bottom:230.106667pt;}
.y19{bottom:235.226667pt;}
.y92{bottom:236.026667pt;}
.y18d{bottom:237.466667pt;}
.y5a{bottom:237.946667pt;}
.y24{bottom:238.266667pt;}
.y9c{bottom:238.906667pt;}
.y114{bottom:239.706667pt;}
.y12c{bottom:241.466667pt;}
.y161{bottom:249.786667pt;}
.yb4{bottom:250.586667pt;}
.y18{bottom:251.226667pt;}
.y91{bottom:251.866667pt;}
.y113{bottom:255.546667pt;}
.y12b{bottom:257.466667pt;}
.y18c{bottom:261.306667pt;}
.y59{bottom:261.946667pt;}
.y17{bottom:267.066667pt;}
.y90{bottom:267.706667pt;}
.y160{bottom:270.906667pt;}
.y112{bottom:271.386667pt;}
.y12a{bottom:273.306667pt;}
.yde{bottom:275.706667pt;}
.y16{bottom:282.906667pt;}
.y8f{bottom:283.546667pt;}
.y58{bottom:283.866667pt;}
.y18b{bottom:285.146667pt;}
.y111{bottom:287.226667pt;}
.y129{bottom:289.146667pt;}
.y15f{bottom:291.546667pt;}
.yb3{bottom:297.626667pt;}
.y15{bottom:298.746667pt;}
.y8e{bottom:299.546667pt;}
.y110{bottom:303.066667pt;}
.y128{bottom:304.986667pt;}
.y18a{bottom:306.906667pt;}
.y14{bottom:314.586667pt;}
.y8d{bottom:315.386667pt;}
.y10f{bottom:319.066667pt;}
.y189{bottom:320.826667pt;}
.yb2{bottom:321.466667pt;}
.y127{bottom:328.826667pt;}
.y13{bottom:330.426667pt;}
.y8c{bottom:331.226667pt;}
.y188{bottom:334.586667pt;}
.y10e{bottom:334.906667pt;}
.yb1{bottom:337.466667pt;}
.y15e{bottom:339.226667pt;}
.y126{bottom:344.666667pt;}
.y8b{bottom:347.066667pt;}
.y187{bottom:348.346667pt;}
.y12{bottom:348.506667pt;}
.y10d{bottom:350.746667pt;}
.yb0{bottom:353.306667pt;}
.y125{bottom:360.666667pt;}
.y15d{bottom:361.466667pt;}
.y186{bottom:362.106667pt;}
.y8a{bottom:362.906667pt;}
.y10c{bottom:366.586667pt;}
.yc1{bottom:367.866667pt;}
.yaf{bottom:369.146667pt;}
.y185{bottom:376.066667pt;}
.y124{bottom:376.546667pt;}
.y11{bottom:380.066667pt;}
.y10b{bottom:382.466667pt;}
.yae{bottom:385.026667pt;}
.y89{bottom:386.946667pt;}
.y184{bottom:389.826667pt;}
.y15c{bottom:390.306667pt;}
.y123{bottom:392.386667pt;}
.y3c{bottom:395.040000pt;}
.yad{bottom:400.866667pt;}
.y183{bottom:403.586667pt;}
.y15b{bottom:406.146667pt;}
.y10a{bottom:406.306667pt;}
.y122{bottom:408.226667pt;}
.y88{bottom:408.706667pt;}
.y182{bottom:417.346667pt;}
.y15a{bottom:421.986667pt;}
.y109{bottom:422.306667pt;}
.y121{bottom:424.066667pt;}
.yac{bottom:424.706667pt;}
.y181{bottom:431.266667pt;}
.y42{bottom:434.146667pt;}
.y159{bottom:437.826667pt;}
.y108{bottom:438.146667pt;}
.y7c{bottom:438.626667pt;}
.y120{bottom:440.066667pt;}
.y180{bottom:445.026667pt;}
.yab{bottom:446.786667pt;}
.y158{bottom:453.666667pt;}
.y107{bottom:453.986667pt;}
.y17f{bottom:458.786667pt;}
.y41{bottom:459.746667pt;}
.y7b{bottom:462.466667pt;}
.y157{bottom:469.666667pt;}
.y106{bottom:469.826667pt;}
.y75{bottom:470.306667pt;}
.y17e{bottom:472.546667pt;}
.y7a{bottom:478.306667pt;}
.y11f{bottom:479.746667pt;}
.y156{bottom:485.506667pt;}
.y105{bottom:485.666667pt;}
.y74{bottom:486.146667pt;}
.y17d{bottom:486.466667pt;}
.y79{bottom:494.146667pt;}
.y11e{bottom:495.586667pt;}
.y17c{bottom:500.226667pt;}
.y155{bottom:501.346667pt;}
.y104{bottom:501.666667pt;}
.y73{bottom:502.146667pt;}
.y78{bottom:510.146667pt;}
.y11d{bottom:511.426667pt;}
.y17b{bottom:513.986667pt;}
.y154{bottom:517.186667pt;}
.y103{bottom:517.506667pt;}
.y72{bottom:517.986667pt;}
.y77{bottom:525.986667pt;}
.y11c{bottom:527.266667pt;}
.y17a{bottom:527.746667pt;}
.y153{bottom:533.026667pt;}
.y102{bottom:533.346667pt;}
.y71{bottom:533.826667pt;}
.ydd{bottom:534.306667pt;}
.y179{bottom:541.666667pt;}
.y76{bottom:541.826667pt;}
.y57{bottom:546.786667pt;}
.y152{bottom:549.026667pt;}
.y101{bottom:549.186667pt;}
.y11b{bottom:551.266667pt;}
.y178{bottom:555.426667pt;}
.y70{bottom:557.666667pt;}
.ydc{bottom:558.146667pt;}
.y10{bottom:562.146667pt;}
.y151{bottom:564.866667pt;}
.y100{bottom:565.026667pt;}
.y56{bottom:568.546667pt;}
.y177{bottom:571.266667pt;}
.y11a{bottom:573.186667pt;}
.y6f{bottom:579.586667pt;}
.ydb{bottom:580.226667pt;}
.y150{bottom:580.706667pt;}
.yff{bottom:580.866667pt;}
.y55{bottom:582.306667pt;}
.y176{bottom:587.133333pt;}
.y14f{bottom:596.573333pt;}
.yf{bottom:596.893333pt;}
.y175{bottom:602.973333pt;}
.y14e{bottom:612.413333pt;}
.yfe{bottom:612.733333pt;}
.ye{bottom:613.693333pt;}
.y54{bottom:616.893333pt;}
.y174{bottom:618.973333pt;}
.y39{bottom:619.293333pt;}
.y14d{bottom:628.253333pt;}
.yfd{bottom:628.573333pt;}
.y173{bottom:634.813333pt;}
.y53{bottom:638.813333pt;}
.yaa{bottom:639.453333pt;}
.y14c{bottom:644.253333pt;}
.yfc{bottom:644.413333pt;}
.y172{bottom:650.653333pt;}
.y14b{bottom:660.093333pt;}
.yfb{bottom:660.253333pt;}
.ya9{bottom:663.293333pt;}
.yd{bottom:663.613333pt;}
.y171{bottom:666.493333pt;}
.y37{bottom:668.893333pt;}
.y14a{bottom:675.933333pt;}
.yfa{bottom:676.253333pt;}
.y170{bottom:682.333333pt;}
.ya8{bottom:685.213333pt;}
.y149{bottom:691.773333pt;}
.yf9{bottom:692.093333pt;}
.y16f{bottom:702.013333pt;}
.y148{bottom:707.613333pt;}
.yf8{bottom:707.933333pt;}
.yc{bottom:708.413333pt;}
.y35{bottom:714.013333pt;}
.yf7{bottom:723.773333pt;}
.y147{bottom:725.693333pt;}
.y16e{bottom:726.013333pt;}
.yf6{bottom:739.613333pt;}
.y16d{bottom:750.333333pt;}
.y146{bottom:754.493333pt;}
.yf5{bottom:755.453333pt;}
.y32{bottom:764.413333pt;}
.y145{bottom:770.333333pt;}
.yf4{bottom:771.453333pt;}
.y16c{bottom:774.173333pt;}
.y87{bottom:779.453333pt;}
.y144{bottom:786.173333pt;}
.yf3{bottom:787.293333pt;}
.y16b{bottom:794.173333pt;}
.y119{bottom:798.653333pt;}
.y143{bottom:802.053333pt;}
.yda{bottom:803.333333pt;}
.y86{bottom:803.493333pt;}
.y16a{bottom:810.053333pt;}
.yf2{bottom:811.173333pt;}
.y142{bottom:818.053333pt;}
.y85{bottom:819.333333pt;}
.y118{bottom:822.533333pt;}
.y169{bottom:826.053333pt;}
.yf1{bottom:827.013333pt;}
.yd7{bottom:827.173333pt;}
.yb{bottom:830.533333pt;}
.y84{bottom:835.173333pt;}
.y30{bottom:836.613333pt;}
.yf0{bottom:842.853333pt;}
.yd6{bottom:843.013333pt;}
.y117{bottom:844.453333pt;}
.y47{bottom:849.600000pt;}
.y83{bottom:851.013333pt;}
.yd9{bottom:858.853333pt;}
.y141{bottom:861.733333pt;}
.y82{bottom:866.853333pt;}
.yef{bottom:874.693333pt;}
.yd8{bottom:874.853333pt;}
.y46{bottom:879.333333pt;}
.y81{bottom:882.853333pt;}
.y13e{bottom:886.213333pt;}
.y140{bottom:889.253333pt;}
.ya7{bottom:890.693333pt;}
.yee{bottom:898.533333pt;}
.y80{bottom:898.693333pt;}
.y45{bottom:902.693333pt;}
.y52{bottom:906.533333pt;}
.yed{bottom:914.373333pt;}
.y7f{bottom:914.533333pt;}
.y6e{bottom:922.373333pt;}
.y44{bottom:926.053333pt;}
.yec{bottom:930.213333pt;}
.y51{bottom:930.373333pt;}
.y13d{bottom:932.613333pt;}
.ya6{bottom:938.213333pt;}
.yeb{bottom:946.053333pt;}
.y50{bottom:946.213333pt;}
.y43{bottom:949.573333pt;}
.y6d{bottom:954.053333pt;}
.y13a{bottom:957.253333pt;}
.y13c{bottom:960.133333pt;}
.y4f{bottom:962.053333pt;}
.y6c{bottom:970.053333pt;}
.y4e{bottom:978.053333pt;}
.ya{bottom:984.453333pt;}
.y6b{bottom:985.893333pt;}
.y139{bottom:987.653333pt;}
.y4d{bottom:993.893333pt;}
.y6a{bottom:1001.733333pt;}
.y4c{bottom:1009.733333pt;}
.y137{bottom:1012.293333pt;}
.y69{bottom:1017.600000pt;}
.y4b{bottom:1025.600000pt;}
.y2e{bottom:1038.080000pt;}
.y4a{bottom:1041.440000pt;}
.y49{bottom:1057.280000pt;}
.y1{bottom:1062.560000pt;}
.y5{bottom:1080.000000pt;}
.y3{bottom:1088.000000pt;}
.h29{height:1.787500pt;}
.h2{height:15.680000pt;}
.he{height:18.400000pt;}
.h4{height:19.520000pt;}
.h2a{height:23.840000pt;}
.h26{height:23.872000pt;}
.h27{height:24.000000pt;}
.h28{height:29.760000pt;}
.h3{height:30.254687pt;}
.h5{height:32.060937pt;}
.h21{height:32.960000pt;}
.hb{height:33.515625pt;}
.h8{height:33.867188pt;}
.h15{height:34.400000pt;}
.h1c{height:34.945312pt;}
.h1a{height:37.479688pt;}
.h16{height:39.200000pt;}
.h13{height:39.360000pt;}
.h2e{height:39.375000pt;}
.h7{height:39.562500pt;}
.h2c{height:39.680000pt;}
.h1f{height:39.840000pt;}
.h2d{height:39.843750pt;}
.h1e{height:39.937500pt;}
.h6{height:41.112500pt;}
.h17{height:41.543750pt;}
.h2f{height:41.601562pt;}
.h1d{height:41.760000pt;}
.h14{height:42.665000pt;}
.h19{height:43.782500pt;}
.h2b{height:45.760000pt;}
.ha{height:47.742188pt;}
.hc{height:48.768750pt;}
.h9{height:49.622500pt;}
.hd{height:50.321250pt;}
.h22{height:51.552000pt;}
.h12{height:52.832812pt;}
.hf{height:58.270625pt;}
.h11{height:60.992000pt;}
.h25{height:65.515625pt;}
.h20{height:71.552000pt;}
.h24{height:103.232000pt;}
.h1b{height:117.760000pt;}
.h23{height:138.880000pt;}
.h10{height:142.720000pt;}
.h18{height:155.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:75.392000pt;}
.w2{width:75.840000pt;}
.wc{width:120.160000pt;}
.we{width:120.352000pt;}
.wf{width:133.440000pt;}
.wd{width:133.466667pt;}
.w10{width:172.506667pt;}
.w13{width:199.706667pt;}
.w14{width:224.186667pt;}
.w11{width:247.426667pt;}
.w12{width:269.626667pt;}
.w3{width:417.920000pt;}
.wa{width:445.280000pt;}
.w5{width:626.880000pt;}
.w9{width:688.480000pt;}
.w6{width:696.453333pt;}
.w7{width:697.253333pt;}
.w8{width:697.413333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x28{left:6.880000pt;}
.xf{left:9.600000pt;}
.x3b{left:10.560000pt;}
.x3c{left:12.960000pt;}
.x38{left:19.040000pt;}
.x3e{left:30.880000pt;}
.x35{left:34.880000pt;}
.x30{left:37.472000pt;}
.x3d{left:38.752000pt;}
.x36{left:40.832000pt;}
.x3a{left:41.792000pt;}
.x10{left:44.032000pt;}
.x5{left:47.999988pt;}
.x2f{left:51.360000pt;}
.x14{left:54.400000pt;}
.x15{left:63.999988pt;}
.x40{left:69.440000pt;}
.x22{left:71.999988pt;}
.xe{left:82.400000pt;}
.x1{left:88.992000pt;}
.x3f{left:96.640000pt;}
.x32{left:100.200000pt;}
.x34{left:110.720000pt;}
.x29{left:124.832000pt;}
.x39{left:134.920000pt;}
.x6{left:143.706655pt;}
.x1b{left:153.786655pt;}
.xa{left:154.746655pt;}
.x1d{left:156.986655pt;}
.x1a{left:158.146667pt;}
.x19{left:176.320000pt;}
.x13{left:179.386667pt;}
.x31{left:224.666667pt;}
.x18{left:228.346655pt;}
.x25{left:233.306655pt;}
.x16{left:236.026655pt;}
.x2a{left:245.626667pt;}
.x2d{left:255.866655pt;}
.x11{left:285.026667pt;}
.x12{left:287.586667pt;}
.x20{left:295.106655pt;}
.x23{left:305.346655pt;}
.x7{left:317.346655pt;}
.x17{left:318.786655pt;}
.x3{left:327.040000pt;}
.x4{left:409.093333pt;}
.xc{left:414.146655pt;}
.xd{left:438.173322pt;}
.x41{left:462.173322pt;}
.x33{left:472.733333pt;}
.x37{left:481.853333pt;}
.x2b{left:490.813333pt;}
.x2c{left:611.813333pt;}
.x21{left:717.253322pt;}
.x26{left:718.213322pt;}
.x2e{left:726.213322pt;}
.x1e{left:727.333322pt;}
.x27{left:728.933322pt;}
.x24{left:732.933322pt;}
.x1f{left:738.213322pt;}
.x1c{left:739.973322pt;}
.x8{left:744.133322pt;}
.x9{left:746.053322pt;}
.xb{left:752.133322pt;}
}




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