
    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_ef812834cec3eaf32796ec40.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3e6fb2d5f40e449e9ed19862.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_28ce8b96139895a16d19e5af.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_a4c6344feaad6ab617df3628.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_d018dc4588bfe8f37948239d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_9612680e092fe9184d4c6244.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924805;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_938dc6d4fb81355ee3232d22.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_e1e3e450f2dd0c6ddd85dc40.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_8c17b8b92da5dba623f9b87e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738770;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_e67d163eaafdadcce859b746.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.196289;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;}
.ls10{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.696000px;}
.ls1a{letter-spacing:-0.538800px;}
.lse{letter-spacing:-0.495600px;}
.lsd{letter-spacing:-0.449400px;}
.ls1d{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.224400px;}
.ls16{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.181200px;}
.ls20{letter-spacing:-0.175800px;}
.ls12{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.058320px;}
.ls1{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000003px;}
.ls8{letter-spacing:0.023040px;}
.ls13{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.178800px;}
.lsc{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.224400px;}
.ls4{letter-spacing:0.270600px;}
.ls18{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.720000px;}
.ls14{letter-spacing:2.160000px;}
.ls5{letter-spacing:8.640000px;}
.ls17{letter-spacing:8.820000px;}
.ls7{letter-spacing:10.776000px;}
.ls6{letter-spacing:12.240000px;}
.lsa{letter-spacing:13.680000px;}
.ls1e{letter-spacing:14.400000px;}
.ls19{letter-spacing:22.986720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-49.870080px;}
.ws3{word-spacing:-21.641760px;}
.ws15{word-spacing:-19.900080px;}
.ws1{word-spacing:-19.640280px;}
.ws19{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.856000px;}
.ws1a{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.550600px;}
.ws7{word-spacing:-17.504400px;}
.ws9{word-spacing:-17.303040px;}
.wsc{word-spacing:-17.280003px;}
.ws6{word-spacing:-17.280000px;}
.wsd{word-spacing:-17.055600px;}
.ws8{word-spacing:-16.830600px;}
.wsb{word-spacing:-16.784400px;}
.wsf{word-spacing:-16.584000px;}
.wse{word-spacing:-16.560000px;}
.ws14{word-spacing:-14.940000px;}
.ws10{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.447440px;}
.ws4{word-spacing:-13.229520px;}
.ws0{word-spacing:-12.186000px;}
.ws13{word-spacing:-12.060000px;}
.ws18{word-spacing:-10.618800px;}
.ws16{word-spacing:-10.440000px;}
.ws17{word-spacing:-0.048240px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-4.957200px;}
._15{margin-left:-3.939840px;}
._e{margin-left:-2.289600px;}
._8{margin-left:-1.087920px;}
._0{width:1.171200px;}
._5{width:2.474160px;}
._10{width:4.438800px;}
._f{width:5.875200px;}
._2{width:7.195200px;}
._3{width:8.210640px;}
._4{width:9.419040px;}
._b{width:11.079600px;}
._c{width:12.489840px;}
._16{width:13.497120px;}
._14{width:14.653440px;}
._a{width:15.836400px;}
._9{width:17.031600px;}
._13{width:18.385920px;}
._6{width:19.744800px;}
._1c{width:20.761200px;}
._12{width:21.805920px;}
._11{width:23.293440px;}
._18{width:24.343920px;}
._17{width:25.344000px;}
._1d{width:26.384160px;}
._20{width:27.508320px;}
._1e{width:28.545840px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._1f{width:32.204400px;}
._19{width:33.264000px;}
._1b{width:34.704000px;}
._21{width:36.023040px;}
._27{width:42.258240px;}
._d{width:43.744320px;}
._2a{width:47.709360px;}
._28{width:48.797280px;}
._24{width:54.028800px;}
._26{width:70.312320px;}
._29{width:89.367120px;}
._23{width:90.691200px;}
._22{width:98.436240px;}
._25{width:115.513200px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y18a{bottom:-105.120000px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y189{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y188{bottom:-32.940000px;}
.y187{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.y81{bottom:2.520000px;}
.y9{bottom:3.780000px;}
.y154{bottom:6.479850px;}
.yb{bottom:7.560000px;}
.y83{bottom:9.360000px;}
.y8{bottom:9.540000px;}
.y2e{bottom:11.880000px;}
.y84{bottom:16.200000px;}
.y86{bottom:16.380000px;}
.y8e{bottom:16.425000px;}
.y186{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.y29{bottom:22.755000px;}
.y87{bottom:23.220000px;}
.y8b{bottom:30.060000px;}
.y88{bottom:30.240000px;}
.y2d{bottom:34.785000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.y185{bottom:41.436000px;}
.ye{bottom:43.560000px;}
.y91{bottom:43.920000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.y184{bottom:65.190000px;}
.y1c{bottom:73.125000px;}
.y63{bottom:73.620000px;}
.y143{bottom:74.700000px;}
.yc0{bottom:77.580000px;}
.y62{bottom:78.120000px;}
.y183{bottom:79.770000px;}
.y2b{bottom:80.325000px;}
.y111{bottom:81.360000px;}
.ydd{bottom:82.260000px;}
.y99{bottom:82.440000px;}
.y153{bottom:85.500000px;}
.y61{bottom:90.360000px;}
.y7f{bottom:91.080000px;}
.y142{bottom:95.400000px;}
.yb8{bottom:97.200000px;}
.y98{bottom:99.720000px;}
.y182{bottom:103.350000px;}
.yf4{bottom:104.580000px;}
.y122{bottom:104.940000px;}
.y16a{bottom:107.280000px;}
.ybf{bottom:108.720000px;}
.y1b{bottom:109.305000px;}
.y110{bottom:112.320000px;}
.ydc{bottom:113.400000px;}
.y7e{bottom:122.040000px;}
.y152{bottom:124.200000px;}
.y60{bottom:124.380000px;}
.y121{bottom:125.640000px;}
.y181{bottom:127.110000px;}
.y1a{bottom:127.665000px;}
.yb7{bottom:128.160000px;}
.y141{bottom:134.100000px;}
.yf3{bottom:135.756000px;}
.y97{bottom:137.016000px;}
.ybe{bottom:139.716000px;}
.y10f{bottom:143.496000px;}
.y5f{bottom:144.396000px;}
.y19{bottom:146.025000px;}
.y180{bottom:150.690000px;}
.y7d{bottom:153.210000px;}
.yf2{bottom:154.830000px;}
.yd{bottom:156.090000px;}
.yb6{bottom:159.330000px;}
.y151{bottom:162.930000px;}
.y18{bottom:164.205000px;}
.y120{bottom:164.370000px;}
.yf1{bottom:166.890000px;}
.y96{bottom:167.970000px;}
.ybd{bottom:170.850000px;}
.y5e{bottom:173.190000px;}
.y10e{bottom:174.450000px;}
.ydb{bottom:175.530000px;}
.yf0{bottom:177.330000px;}
.y17{bottom:182.565000px;}
.y7c{bottom:184.170000px;}
.y11f{bottom:185.070000px;}
.y17f{bottom:189.030000px;}
.yb5{bottom:190.290000px;}
.yef{bottom:191.910000px;}
.y5d{bottom:192.990000px;}
.y140{bottom:193.530000px;}
.y95{bottom:199.110000px;}
.y150{bottom:201.630000px;}
.ybc{bottom:201.810000px;}
.y10d{bottom:205.590000px;}
.yda{bottom:206.490000px;}
.y17e{bottom:212.610000px;}
.y5c{bottom:212.790000px;}
.y13f{bottom:214.230000px;}
.y7b{bottom:215.310000px;}
.y16{bottom:218.925000px;}
.yee{bottom:221.070000px;}
.yb4{bottom:221.430000px;}
.y11e{bottom:223.770000px;}
.y94{bottom:230.070000px;}
.y5b{bottom:232.590000px;}
.ybb{bottom:232.950000px;}
.yed{bottom:235.650000px;}
.y17d{bottom:236.370000px;}
.y10c{bottom:236.550000px;}
.y15{bottom:237.285000px;}
.yd9{bottom:237.630000px;}
.y14f{bottom:240.330000px;}
.y7a{bottom:246.270000px;}
.yec{bottom:250.050000px;}
.y17c{bottom:250.950000px;}
.yba{bottom:252.210000px;}
.y5a{bottom:252.390000px;}
.y13e{bottom:252.930000px;}
.y14{bottom:255.465000px;}
.y93{bottom:261.210000px;}
.y11d{bottom:262.470000px;}
.yb9{bottom:263.370000px;}
.y10b{bottom:267.690000px;}
.yd8{bottom:268.590000px;}
.y59{bottom:272.370000px;}
.y13d{bottom:273.630000px;}
.y13{bottom:273.855000px;}
.y17b{bottom:274.890000px;}
.y79{bottom:277.230000px;}
.y14e{bottom:279.030000px;}
.y92{bottom:280.290000px;}
.y11c{bottom:283.170000px;}
.yb3{bottom:283.530000px;}
.y90{bottom:290.730000px;}
.y58{bottom:292.170000px;}
.y10a{bottom:298.650000px;}
.yd7{bottom:299.730000px;}
.y11b{bottom:303.870000px;}
.y78{bottom:308.370000px;}
.y17a{bottom:309.135000px;}
.y57{bottom:311.970000px;}
.y13c{bottom:312.330000px;}
.yb2{bottom:314.490000px;}
.y14d{bottom:317.730000px;}
.y179{bottom:323.715000px;}
.y109{bottom:329.790000px;}
.yd6{bottom:330.690000px;}
.y56{bottom:331.770000px;}
.y13b{bottom:333.030000px;}
.y77{bottom:339.330000px;}
.y11a{bottom:342.570000px;}
.yb1{bottom:345.630000px;}
.y8f{bottom:346.710000px;}
.y178{bottom:347.475000px;}
.y55{bottom:351.570000px;}
.y14c{bottom:356.430000px;}
.y2a{bottom:360.210000px;}
.y108{bottom:360.750000px;}
.yd5{bottom:361.830000px;}
.y119{bottom:363.270000px;}
.y76{bottom:370.470000px;}
.y177{bottom:371.055000px;}
.y54{bottom:371.550000px;}
.y13a{bottom:371.730000px;}
.y8d{bottom:374.970000px;}
.yb0{bottom:376.590000px;}
.y53{bottom:391.395000px;}
.y107{bottom:391.935000px;}
.y139{bottom:392.475000px;}
.yd4{bottom:392.835000px;}
.y176{bottom:394.815000px;}
.y14b{bottom:395.175000px;}
.y75{bottom:401.475000px;}
.y118{bottom:402.015000px;}
.y8c{bottom:403.455000px;}
.y169{bottom:406.875000px;}
.yaf{bottom:407.775000px;}
.y52{bottom:411.195000px;}
.yfa{bottom:411.915000px;}
.y175{bottom:418.395000px;}
.y106{bottom:422.895000px;}
.yd3{bottom:423.975000px;}
.y51{bottom:430.995000px;}
.y138{bottom:431.175000px;}
.y74{bottom:432.615000px;}
.y174{bottom:432.975000px;}
.y14a{bottom:433.875000px;}
.yf9{bottom:434.415000px;}
.y168{bottom:437.835000px;}
.yae{bottom:438.735000px;}
.y117{bottom:440.715000px;}
.y8a{bottom:445.575000px;}
.yf8{bottom:448.995000px;}
.y50{bottom:450.795000px;}
.y137{bottom:451.875000px;}
.y105{bottom:454.035000px;}
.yd2{bottom:454.935000px;}
.y173{bottom:456.735000px;}
.y167{bottom:457.815000px;}
.y73{bottom:463.575000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.yad{bottom:469.875000px;}
.y149{bottom:472.575000px;}
.yf7{bottom:478.155000px;}
.y116{bottom:479.415000px;}
.y4f{bottom:479.595000px;}
.y172{bottom:480.675000px;}
.y104{bottom:484.995000px;}
.yd1{bottom:486.075000px;}
.yc{bottom:486.615000px;}
.y89{bottom:487.695000px;}
.y136{bottom:490.575000px;}
.yf6{bottom:492.735000px;}
.y166{bottom:493.815000px;}
.y72{bottom:494.715000px;}
.y115{bottom:500.115000px;}
.yac{bottom:500.835000px;}
.y4e{bottom:501.735000px;}
.yf5{bottom:507.315000px;}
.y135{bottom:511.275000px;}
.y171{bottom:514.875000px;}
.y103{bottom:516.135000px;}
.yd0{bottom:517.035000px;}
.y71{bottom:525.675000px;}
.y85{bottom:529.815000px;}
.y4d{bottom:531.975000px;}
.y165{bottom:533.775000px;}
.y114{bottom:538.815000px;}
.y170{bottom:539.205000px;}
.y102{bottom:547.095000px;}
.ycf{bottom:548.175000px;}
.y134{bottom:549.975000px;}
.y4c{bottom:551.775000px;}
.y25{bottom:552.420000px;}
.y70{bottom:556.815000px;}
.y113{bottom:559.515000px;}
.yab{bottom:562.935000px;}
.y164{bottom:564.915000px;}
.y133{bottom:570.675000px;}
.y82{bottom:572.115000px;}
.y16f{bottom:575.025000px;}
.y101{bottom:578.235000px;}
.yce{bottom:579.135000px;}
.y4b{bottom:580.755000px;}
.y6f{bottom:587.775000px;}
.y148{bottom:588.675000px;}
.y10{bottom:589.215000px;}
.yaa{bottom:593.895000px;}
.y163{bottom:595.875000px;}
.y100{bottom:597.315000px;}
.y112{bottom:598.215000px;}
.y80{bottom:600.375000px;}
.y4a{bottom:600.555000px;}
.y23{bottom:605.340000px;}
.yff{bottom:607.755000px;}
.y132{bottom:609.375000px;}
.y16e{bottom:609.945000px;}
.ycd{bottom:610.095000px;}
.ya{bottom:616.395000px;}
.y6e{bottom:618.915000px;}
.y155{bottom:619.635150px;}
.y49{bottom:620.355000px;}
.ya9{bottom:625.035000px;}
.y162{bottom:627.015000px;}
.y147{bottom:627.375000px;}
.y131{bottom:630.075000px;}
.y48{bottom:640.185000px;}
.ycc{bottom:641.265000px;}
.y33{bottom:644.685000px;}
.y16d{bottom:646.305000px;}
.y146{bottom:648.105000px;}
.y6d{bottom:649.905000px;}
.ya8{bottom:656.025000px;}
.y161{bottom:658.005000px;}
.y47{bottom:659.985000px;}
.y130{bottom:668.805000px;}
.ycb{bottom:672.225000px;}
.yfe{bottom:678.165000px;}
.y46{bottom:679.965000px;}
.y6c{bottom:681.045000px;}
.y16c{bottom:682.125000px;}
.ya7{bottom:687.165000px;}
.y160{bottom:689.145000px;}
.y12f{bottom:689.505000px;}
.y45{bottom:699.765000px;}
.yca{bottom:703.365000px;}
.yfd{bottom:706.605000px;}
.y145{bottom:707.505000px;}
.y6b{bottom:712.005000px;}
.ya6{bottom:718.125000px;}
.y16b{bottom:718.305000px;}
.y44{bottom:719.565000px;}
.y15f{bottom:720.105000px;}
.y12e{bottom:728.205000px;}
.yc9{bottom:734.325000px;}
.yfc{bottom:734.865000px;}
.y43{bottom:739.365000px;}
.y6a{bottom:743.145000px;}
.y12d{bottom:748.905000px;}
.ya5{bottom:749.265000px;}
.y15e{bottom:751.245000px;}
.yfb{bottom:753.405000px;}
.yc8{bottom:753.585000px;}
.y42{bottom:759.165000px;}
.yeb{bottom:765.465000px;}
.yc7{bottom:765.645000px;}
.y144{bottom:766.905000px;}
.y69{bottom:774.105000px;}
.yc6{bottom:776.085000px;}
.y41{bottom:779.145000px;}
.ya4{bottom:780.225000px;}
.y15d{bottom:782.205000px;}
.y12c{bottom:787.605000px;}
.yc5{bottom:790.665000px;}
.yea{bottom:796.425000px;}
.y40{bottom:798.945000px;}
.yc4{bottom:805.065000px;}
.y68{bottom:805.245000px;}
.ya3{bottom:811.365000px;}
.y15c{bottom:813.345000px;}
.y3f{bottom:818.745000px;}
.yc3{bottom:819.645000px;}
.y12b{bottom:826.305000px;}
.ye9{bottom:827.565000px;}
.yc2{bottom:834.225000px;}
.y67{bottom:836.205000px;}
.y3e{bottom:838.545000px;}
.ya2{bottom:842.325000px;}
.y15b{bottom:844.305000px;}
.y12a{bottom:847.005000px;}
.yc1{bottom:848.805000px;}
.y3d{bottom:858.345000px;}
.ye8{bottom:858.525000px;}
.y66{bottom:867.345000px;}
.ya1{bottom:873.465000px;}
.y15a{bottom:875.445000px;}
.y3c{bottom:878.325000px;}
.y129{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.ye7{bottom:889.665000px;}
.y3b{bottom:898.170000px;}
.y65{bottom:898.350000px;}
.ya0{bottom:904.470000px;}
.y128{bottom:906.450000px;}
.y18b{bottom:912.210000px;}
.ye6{bottom:920.670000px;}
.y3a{bottom:927.870000px;}
.y64{bottom:929.490000px;}
.y9f{bottom:935.610000px;}
.y159{bottom:937.590000px;}
.y127{bottom:945.150000px;}
.ye5{bottom:951.810000px;}
.y39{bottom:960.450000px;}
.y126{bottom:965.850000px;}
.y9e{bottom:966.570000px;}
.y158{bottom:968.550000px;}
.ye4{bottom:970.890000px;}
.ye3{bottom:982.950000px;}
.y37{bottom:991.590000px;}
.ye2{bottom:993.390000px;}
.y9d{bottom:997.710000px;}
.y38{bottom:998.430000px;}
.y125{bottom:1004.550000px;}
.y157{bottom:1007.250000px;}
.ye1{bottom:1007.970000px;}
.y36{bottom:1022.550000px;}
.y124{bottom:1025.250000px;}
.y9c{bottom:1026.690000px;}
.ye0{bottom:1037.130000px;}
.y9b{bottom:1043.970000px;}
.y156{bottom:1045.950000px;}
.ydf{bottom:1051.530000px;}
.y35{bottom:1053.690000px;}
.y123{bottom:1063.950000px;}
.yde{bottom:1066.110000px;}
.y9a{bottom:1070.070000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h26{height:13.680000px;}
.h1e{height:13.860000px;}
.h5{height:24.156000px;}
.h20{height:27.540000px;}
.h27{height:27.720000px;}
.h23{height:27.756000px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h1b{height:32.273438px;}
.h17{height:34.201406px;}
.h12{height:35.261367px;}
.h25{height:37.437188px;}
.h22{height:41.400000px;}
.h28{height:41.436000px;}
.h1f{height:42.845977px;}
.h21{height:43.246406px;}
.h1a{height:46.963125px;}
.h2d{height:47.980898px;}
.h1c{height:48.410156px;}
.h16{height:51.046875px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h24{height:55.260000px;}
.h2e{height:55.291992px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h2{height:59.439023px;}
.h2c{height:61.189805px;}
.h18{height:61.391250px;}
.h19{height:61.965000px;}
.h15{height:63.949219px;}
.h1d{height:64.546875px;}
.h13{height:65.884219px;}
.h2b{height:79.620469px;}
.hf{height:91.177734px;}
.h11{height:100.656000px;}
.hd{height:109.102500px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h2f{height:189.000000px;}
.hb{height:306.255000px;}
.h2a{height:754.845000px;}
.h9{height:1188.900000px;}
.h29{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.960000px;}
.w15{width:74.160000px;}
.w6{width:88.560000px;}
.w19{width:90.936000px;}
.w1a{width:95.400000px;}
.w1e{width:95.436000px;}
.w17{width:99.036000px;}
.w23{width:105.516000px;}
.w1f{width:105.660000px;}
.w1d{width:116.100000px;}
.w1c{width:116.136000px;}
.w20{width:116.676000px;}
.w25{width:126.360000px;}
.w11{width:126.540000px;}
.w24{width:126.900000px;}
.w18{width:133.200000px;}
.w1b{width:137.556000px;}
.w22{width:146.196000px;}
.w16{width:148.176000px;}
.w21{width:150.150000px;}
.w12{width:169.410000px;}
.w27{width:190.650000px;}
.wf{width:198.210000px;}
.w28{width:201.270000px;}
.w26{width:201.495000px;}
.w14{width:204.150000px;}
.w13{width:209.055000px;}
.w2a{width:213.330000px;}
.wa{width:255.060000px;}
.wb{width:295.200000px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w29{width:326.055000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.545000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x11{left:-2.055000px;}
.x0{left:0.000000px;}
.x2c{left:3.420000px;}
.x2d{left:4.680000px;}
.x38{left:6.300000px;}
.x3a{left:7.380000px;}
.x6{left:8.676000px;}
.xa{left:9.900000px;}
.x3f{left:11.160000px;}
.x53{left:12.240000px;}
.x2f{left:13.680000px;}
.x32{left:15.840000px;}
.x31{left:17.640000px;}
.x48{left:18.900000px;}
.x45{left:20.880000px;}
.xd{left:22.320000px;}
.x37{left:23.400000px;}
.x2e{left:25.380000px;}
.x52{left:26.460000px;}
.x4b{left:27.540000px;}
.x5b{left:30.960000px;}
.xc{left:33.120000px;}
.x26{left:35.640000px;}
.x17{left:37.620000px;}
.x28{left:40.905000px;}
.x2a{left:41.970000px;}
.x30{left:43.200000px;}
.x49{left:44.505000px;}
.x50{left:45.540000px;}
.x55{left:46.620000px;}
.x54{left:48.420000px;}
.x3e{left:50.040000px;}
.x4{left:64.439987px;}
.x22{left:68.939987px;}
.x5{left:73.080000px;}
.x1c{left:76.319987px;}
.x18{left:82.800000px;}
.x24{left:84.995987px;}
.x1b{left:87.695987px;}
.x34{left:90.935987px;}
.x57{left:101.196000px;}
.x25{left:106.416000px;}
.x41{left:111.096000px;}
.x19{left:113.400000px;}
.x23{left:117.575987px;}
.x40{left:128.375987px;}
.x15{left:133.125000px;}
.x8{left:137.385000px;}
.x4a{left:140.255987px;}
.x36{left:141.335987px;}
.x51{left:155.369987px;}
.x14{left:160.410000px;}
.xf{left:163.290000px;}
.x4c{left:185.970000px;}
.x1a{left:187.245000px;}
.x5d{left:202.545000px;}
.x42{left:207.210000px;}
.x58{left:228.270000px;}
.x27{left:233.670000px;}
.x33{left:255.854987px;}
.x56{left:273.494987px;}
.x21{left:280.514987px;}
.x4d{left:334.875000px;}
.x39{left:337.035000px;}
.x43{left:345.495000px;}
.x3{left:388.694987px;}
.x29{left:403.815000px;}
.x13{left:406.155000px;}
.xe{left:408.135000px;}
.x16{left:411.945000px;}
.x12{left:419.760000px;}
.x59{left:430.485000px;}
.x10{left:439.560000px;}
.x1d{left:442.004987px;}
.x5c{left:456.225000px;}
.x1{left:461.804987px;}
.x7{left:470.625000px;}
.x4e{left:473.145000px;}
.x44{left:483.765000px;}
.x3b{left:485.925000px;}
.x3c{left:585.870000px;}
.x1e{left:590.549987px;}
.x46{left:600.810000px;}
.x2b{left:613.590000px;}
.x5a{left:621.870000px;}
.x4f{left:696.390000px;}
.x47{left:717.630000px;}
.x3d{left:719.970000px;}
.x2{left:782.279987px;}
.x35{left:798.659987px;}
.xb{left:803.880000px;}
.x1f{left:813.599973px;}
.x20{left:819.719987px;}
.x9{left:838.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.618667pt;}
.ls1a{letter-spacing:-0.478933pt;}
.lse{letter-spacing:-0.440533pt;}
.lsd{letter-spacing:-0.399467pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.199467pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.161067pt;}
.ls20{letter-spacing:-0.156267pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000003pt;}
.ls8{letter-spacing:0.020480pt;}
.ls13{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.158933pt;}
.lsc{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.199467pt;}
.ls4{letter-spacing:0.240533pt;}
.ls18{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls5{letter-spacing:7.680000pt;}
.ls17{letter-spacing:7.840000pt;}
.ls7{letter-spacing:9.578667pt;}
.ls6{letter-spacing:10.880000pt;}
.lsa{letter-spacing:12.160000pt;}
.ls1e{letter-spacing:12.800000pt;}
.ls19{letter-spacing:20.432640pt;}
.ws2{word-spacing:-44.328960pt;}
.ws3{word-spacing:-19.237120pt;}
.ws15{word-spacing:-17.688960pt;}
.ws1{word-spacing:-17.458027pt;}
.ws19{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws1a{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.600533pt;}
.ws7{word-spacing:-15.559467pt;}
.ws9{word-spacing:-15.380480pt;}
.wsc{word-spacing:-15.360003pt;}
.ws6{word-spacing:-15.360000pt;}
.wsd{word-spacing:-15.160533pt;}
.ws8{word-spacing:-14.960533pt;}
.wsb{word-spacing:-14.919467pt;}
.wsf{word-spacing:-14.741333pt;}
.wse{word-spacing:-14.720000pt;}
.ws14{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.953280pt;}
.ws4{word-spacing:-11.759573pt;}
.ws0{word-spacing:-10.832000pt;}
.ws13{word-spacing:-10.720000pt;}
.ws18{word-spacing:-9.438933pt;}
.ws16{word-spacing:-9.280000pt;}
.ws17{word-spacing:-0.042880pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-4.406400pt;}
._15{margin-left:-3.502080pt;}
._e{margin-left:-2.035200pt;}
._8{margin-left:-0.967040pt;}
._0{width:1.041067pt;}
._5{width:2.199253pt;}
._10{width:3.945600pt;}
._f{width:5.222400pt;}
._2{width:6.395733pt;}
._3{width:7.298347pt;}
._4{width:8.372480pt;}
._b{width:9.848533pt;}
._c{width:11.102080pt;}
._16{width:11.997440pt;}
._14{width:13.025280pt;}
._a{width:14.076800pt;}
._9{width:15.139200pt;}
._13{width:16.343040pt;}
._6{width:17.550933pt;}
._1c{width:18.454400pt;}
._12{width:19.383040pt;}
._11{width:20.705280pt;}
._18{width:21.639040pt;}
._17{width:22.528000pt;}
._1d{width:23.452587pt;}
._20{width:24.451840pt;}
._1e{width:25.374080pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._1f{width:28.626133pt;}
._19{width:29.568000pt;}
._1b{width:30.848000pt;}
._21{width:32.020480pt;}
._27{width:37.562880pt;}
._d{width:38.883840pt;}
._2a{width:42.408320pt;}
._28{width:43.375360pt;}
._24{width:48.025600pt;}
._26{width:62.499840pt;}
._29{width:79.437440pt;}
._23{width:80.614400pt;}
._22{width:87.498880pt;}
._25{width:102.678400pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y18a{bottom:-93.440000pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y189{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y188{bottom:-29.280000pt;}
.y187{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.y81{bottom:2.240000pt;}
.y9{bottom:3.360000pt;}
.y154{bottom:5.759867pt;}
.yb{bottom:6.720000pt;}
.y83{bottom:8.320000pt;}
.y8{bottom:8.480000pt;}
.y2e{bottom:10.560000pt;}
.y84{bottom:14.400000pt;}
.y86{bottom:14.560000pt;}
.y8e{bottom:14.600000pt;}
.y186{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.y29{bottom:20.226667pt;}
.y87{bottom:20.640000pt;}
.y8b{bottom:26.720000pt;}
.y88{bottom:26.880000pt;}
.y2d{bottom:30.920000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.y185{bottom:36.832000pt;}
.ye{bottom:38.720000pt;}
.y91{bottom:39.040000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.y184{bottom:57.946667pt;}
.y1c{bottom:65.000000pt;}
.y63{bottom:65.440000pt;}
.y143{bottom:66.400000pt;}
.yc0{bottom:68.960000pt;}
.y62{bottom:69.440000pt;}
.y183{bottom:70.906667pt;}
.y2b{bottom:71.400000pt;}
.y111{bottom:72.320000pt;}
.ydd{bottom:73.120000pt;}
.y99{bottom:73.280000pt;}
.y153{bottom:76.000000pt;}
.y61{bottom:80.320000pt;}
.y7f{bottom:80.960000pt;}
.y142{bottom:84.800000pt;}
.yb8{bottom:86.400000pt;}
.y98{bottom:88.640000pt;}
.y182{bottom:91.866667pt;}
.yf4{bottom:92.960000pt;}
.y122{bottom:93.280000pt;}
.y16a{bottom:95.360000pt;}
.ybf{bottom:96.640000pt;}
.y1b{bottom:97.160000pt;}
.y110{bottom:99.840000pt;}
.ydc{bottom:100.800000pt;}
.y7e{bottom:108.480000pt;}
.y152{bottom:110.400000pt;}
.y60{bottom:110.560000pt;}
.y121{bottom:111.680000pt;}
.y181{bottom:112.986667pt;}
.y1a{bottom:113.480000pt;}
.yb7{bottom:113.920000pt;}
.y141{bottom:119.200000pt;}
.yf3{bottom:120.672000pt;}
.y97{bottom:121.792000pt;}
.ybe{bottom:124.192000pt;}
.y10f{bottom:127.552000pt;}
.y5f{bottom:128.352000pt;}
.y19{bottom:129.800000pt;}
.y180{bottom:133.946667pt;}
.y7d{bottom:136.186667pt;}
.yf2{bottom:137.626667pt;}
.yd{bottom:138.746667pt;}
.yb6{bottom:141.626667pt;}
.y151{bottom:144.826667pt;}
.y18{bottom:145.960000pt;}
.y120{bottom:146.106667pt;}
.yf1{bottom:148.346667pt;}
.y96{bottom:149.306667pt;}
.ybd{bottom:151.866667pt;}
.y5e{bottom:153.946667pt;}
.y10e{bottom:155.066667pt;}
.ydb{bottom:156.026667pt;}
.yf0{bottom:157.626667pt;}
.y17{bottom:162.280000pt;}
.y7c{bottom:163.706667pt;}
.y11f{bottom:164.506667pt;}
.y17f{bottom:168.026667pt;}
.yb5{bottom:169.146667pt;}
.yef{bottom:170.586667pt;}
.y5d{bottom:171.546667pt;}
.y140{bottom:172.026667pt;}
.y95{bottom:176.986667pt;}
.y150{bottom:179.226667pt;}
.ybc{bottom:179.386667pt;}
.y10d{bottom:182.746667pt;}
.yda{bottom:183.546667pt;}
.y17e{bottom:188.986667pt;}
.y5c{bottom:189.146667pt;}
.y13f{bottom:190.426667pt;}
.y7b{bottom:191.386667pt;}
.y16{bottom:194.600000pt;}
.yee{bottom:196.506667pt;}
.yb4{bottom:196.826667pt;}
.y11e{bottom:198.906667pt;}
.y94{bottom:204.506667pt;}
.y5b{bottom:206.746667pt;}
.ybb{bottom:207.066667pt;}
.yed{bottom:209.466667pt;}
.y17d{bottom:210.106667pt;}
.y10c{bottom:210.266667pt;}
.y15{bottom:210.920000pt;}
.yd9{bottom:211.226667pt;}
.y14f{bottom:213.626667pt;}
.y7a{bottom:218.906667pt;}
.yec{bottom:222.266667pt;}
.y17c{bottom:223.066667pt;}
.yba{bottom:224.186667pt;}
.y5a{bottom:224.346667pt;}
.y13e{bottom:224.826667pt;}
.y14{bottom:227.080000pt;}
.y93{bottom:232.186667pt;}
.y11d{bottom:233.306667pt;}
.yb9{bottom:234.106667pt;}
.y10b{bottom:237.946667pt;}
.yd8{bottom:238.746667pt;}
.y59{bottom:242.106667pt;}
.y13d{bottom:243.226667pt;}
.y13{bottom:243.426667pt;}
.y17b{bottom:244.346667pt;}
.y79{bottom:246.426667pt;}
.y14e{bottom:248.026667pt;}
.y92{bottom:249.146667pt;}
.y11c{bottom:251.706667pt;}
.yb3{bottom:252.026667pt;}
.y90{bottom:258.426667pt;}
.y58{bottom:259.706667pt;}
.y10a{bottom:265.466667pt;}
.yd7{bottom:266.426667pt;}
.y11b{bottom:270.106667pt;}
.y78{bottom:274.106667pt;}
.y17a{bottom:274.786667pt;}
.y57{bottom:277.306667pt;}
.y13c{bottom:277.626667pt;}
.yb2{bottom:279.546667pt;}
.y14d{bottom:282.426667pt;}
.y179{bottom:287.746667pt;}
.y109{bottom:293.146667pt;}
.yd6{bottom:293.946667pt;}
.y56{bottom:294.906667pt;}
.y13b{bottom:296.026667pt;}
.y77{bottom:301.626667pt;}
.y11a{bottom:304.506667pt;}
.yb1{bottom:307.226667pt;}
.y8f{bottom:308.186667pt;}
.y178{bottom:308.866667pt;}
.y55{bottom:312.506667pt;}
.y14c{bottom:316.826667pt;}
.y2a{bottom:320.186667pt;}
.y108{bottom:320.666667pt;}
.yd5{bottom:321.626667pt;}
.y119{bottom:322.906667pt;}
.y76{bottom:329.306667pt;}
.y177{bottom:329.826667pt;}
.y54{bottom:330.266667pt;}
.y13a{bottom:330.426667pt;}
.y8d{bottom:333.306667pt;}
.yb0{bottom:334.746667pt;}
.y53{bottom:347.906667pt;}
.y107{bottom:348.386667pt;}
.y139{bottom:348.866667pt;}
.yd4{bottom:349.186667pt;}
.y176{bottom:350.946667pt;}
.y14b{bottom:351.266667pt;}
.y75{bottom:356.866667pt;}
.y118{bottom:357.346667pt;}
.y8c{bottom:358.626667pt;}
.y169{bottom:361.666667pt;}
.yaf{bottom:362.466667pt;}
.y52{bottom:365.506667pt;}
.yfa{bottom:366.146667pt;}
.y175{bottom:371.906667pt;}
.y106{bottom:375.906667pt;}
.yd3{bottom:376.866667pt;}
.y51{bottom:383.106667pt;}
.y138{bottom:383.266667pt;}
.y74{bottom:384.546667pt;}
.y174{bottom:384.866667pt;}
.y14a{bottom:385.666667pt;}
.yf9{bottom:386.146667pt;}
.y168{bottom:389.186667pt;}
.yae{bottom:389.986667pt;}
.y117{bottom:391.746667pt;}
.y8a{bottom:396.066667pt;}
.yf8{bottom:399.106667pt;}
.y50{bottom:400.706667pt;}
.y137{bottom:401.666667pt;}
.y105{bottom:403.586667pt;}
.yd2{bottom:404.386667pt;}
.y173{bottom:405.986667pt;}
.y167{bottom:406.946667pt;}
.y73{bottom:412.066667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.yad{bottom:417.666667pt;}
.y149{bottom:420.066667pt;}
.yf7{bottom:425.026667pt;}
.y116{bottom:426.146667pt;}
.y4f{bottom:426.306667pt;}
.y172{bottom:427.266667pt;}
.y104{bottom:431.106667pt;}
.yd1{bottom:432.066667pt;}
.yc{bottom:432.546667pt;}
.y89{bottom:433.506667pt;}
.y136{bottom:436.066667pt;}
.yf6{bottom:437.986667pt;}
.y166{bottom:438.946667pt;}
.y72{bottom:439.746667pt;}
.y115{bottom:444.546667pt;}
.yac{bottom:445.186667pt;}
.y4e{bottom:445.986667pt;}
.yf5{bottom:450.946667pt;}
.y135{bottom:454.466667pt;}
.y171{bottom:457.666667pt;}
.y103{bottom:458.786667pt;}
.yd0{bottom:459.586667pt;}
.y71{bottom:467.266667pt;}
.y85{bottom:470.946667pt;}
.y4d{bottom:472.866667pt;}
.y165{bottom:474.466667pt;}
.y114{bottom:478.946667pt;}
.y170{bottom:479.293333pt;}
.y102{bottom:486.306667pt;}
.ycf{bottom:487.266667pt;}
.y134{bottom:488.866667pt;}
.y4c{bottom:490.466667pt;}
.y25{bottom:491.040000pt;}
.y70{bottom:494.946667pt;}
.y113{bottom:497.346667pt;}
.yab{bottom:500.386667pt;}
.y164{bottom:502.146667pt;}
.y133{bottom:507.266667pt;}
.y82{bottom:508.546667pt;}
.y16f{bottom:511.133333pt;}
.y101{bottom:513.986667pt;}
.yce{bottom:514.786667pt;}
.y4b{bottom:516.226667pt;}
.y6f{bottom:522.466667pt;}
.y148{bottom:523.266667pt;}
.y10{bottom:523.746667pt;}
.yaa{bottom:527.906667pt;}
.y163{bottom:529.666667pt;}
.y100{bottom:530.946667pt;}
.y112{bottom:531.746667pt;}
.y80{bottom:533.666667pt;}
.y4a{bottom:533.826667pt;}
.y23{bottom:538.080000pt;}
.yff{bottom:540.226667pt;}
.y132{bottom:541.666667pt;}
.y16e{bottom:542.173333pt;}
.ycd{bottom:542.306667pt;}
.ya{bottom:547.906667pt;}
.y6e{bottom:550.146667pt;}
.y155{bottom:550.786800pt;}
.y49{bottom:551.426667pt;}
.ya9{bottom:555.586667pt;}
.y162{bottom:557.346667pt;}
.y147{bottom:557.666667pt;}
.y131{bottom:560.066667pt;}
.y48{bottom:569.053333pt;}
.ycc{bottom:570.013333pt;}
.y33{bottom:573.053333pt;}
.y16d{bottom:574.493333pt;}
.y146{bottom:576.093333pt;}
.y6d{bottom:577.693333pt;}
.ya8{bottom:583.133333pt;}
.y161{bottom:584.893333pt;}
.y47{bottom:586.653333pt;}
.y130{bottom:594.493333pt;}
.ycb{bottom:597.533333pt;}
.yfe{bottom:602.813333pt;}
.y46{bottom:604.413333pt;}
.y6c{bottom:605.373333pt;}
.y16c{bottom:606.333333pt;}
.ya7{bottom:610.813333pt;}
.y160{bottom:612.573333pt;}
.y12f{bottom:612.893333pt;}
.y45{bottom:622.013333pt;}
.yca{bottom:625.213333pt;}
.yfd{bottom:628.093333pt;}
.y145{bottom:628.893333pt;}
.y6b{bottom:632.893333pt;}
.ya6{bottom:638.333333pt;}
.y16b{bottom:638.493333pt;}
.y44{bottom:639.613333pt;}
.y15f{bottom:640.093333pt;}
.y12e{bottom:647.293333pt;}
.yc9{bottom:652.733333pt;}
.yfc{bottom:653.213333pt;}
.y43{bottom:657.213333pt;}
.y6a{bottom:660.573333pt;}
.y12d{bottom:665.693333pt;}
.ya5{bottom:666.013333pt;}
.y15e{bottom:667.773333pt;}
.yfb{bottom:669.693333pt;}
.yc8{bottom:669.853333pt;}
.y42{bottom:674.813333pt;}
.yeb{bottom:680.413333pt;}
.yc7{bottom:680.573333pt;}
.y144{bottom:681.693333pt;}
.y69{bottom:688.093333pt;}
.yc6{bottom:689.853333pt;}
.y41{bottom:692.573333pt;}
.ya4{bottom:693.533333pt;}
.y15d{bottom:695.293333pt;}
.y12c{bottom:700.093333pt;}
.yc5{bottom:702.813333pt;}
.yea{bottom:707.933333pt;}
.y40{bottom:710.173333pt;}
.yc4{bottom:715.613333pt;}
.y68{bottom:715.773333pt;}
.ya3{bottom:721.213333pt;}
.y15c{bottom:722.973333pt;}
.y3f{bottom:727.773333pt;}
.yc3{bottom:728.573333pt;}
.y12b{bottom:734.493333pt;}
.ye9{bottom:735.613333pt;}
.yc2{bottom:741.533333pt;}
.y67{bottom:743.293333pt;}
.y3e{bottom:745.373333pt;}
.ya2{bottom:748.733333pt;}
.y15b{bottom:750.493333pt;}
.y12a{bottom:752.893333pt;}
.yc1{bottom:754.493333pt;}
.y3d{bottom:762.973333pt;}
.ye8{bottom:763.133333pt;}
.y66{bottom:770.973333pt;}
.ya1{bottom:776.413333pt;}
.y15a{bottom:778.173333pt;}
.y3c{bottom:780.733333pt;}
.y129{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.ye7{bottom:790.813333pt;}
.y3b{bottom:798.373333pt;}
.y65{bottom:798.533333pt;}
.ya0{bottom:803.973333pt;}
.y128{bottom:805.733333pt;}
.y18b{bottom:810.853333pt;}
.ye6{bottom:818.373333pt;}
.y3a{bottom:824.773333pt;}
.y64{bottom:826.213333pt;}
.y9f{bottom:831.653333pt;}
.y159{bottom:833.413333pt;}
.y127{bottom:840.133333pt;}
.ye5{bottom:846.053333pt;}
.y39{bottom:853.733333pt;}
.y126{bottom:858.533333pt;}
.y9e{bottom:859.173333pt;}
.y158{bottom:860.933333pt;}
.ye4{bottom:863.013333pt;}
.ye3{bottom:873.733333pt;}
.y37{bottom:881.413333pt;}
.ye2{bottom:883.013333pt;}
.y9d{bottom:886.853333pt;}
.y38{bottom:887.493333pt;}
.y125{bottom:892.933333pt;}
.y157{bottom:895.333333pt;}
.ye1{bottom:895.973333pt;}
.y36{bottom:908.933333pt;}
.y124{bottom:911.333333pt;}
.y9c{bottom:912.613333pt;}
.ye0{bottom:921.893333pt;}
.y9b{bottom:927.973333pt;}
.y156{bottom:929.733333pt;}
.ydf{bottom:934.693333pt;}
.y35{bottom:936.613333pt;}
.y123{bottom:945.733333pt;}
.yde{bottom:947.653333pt;}
.y9a{bottom:951.173333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h26{height:12.160000pt;}
.h1e{height:12.320000pt;}
.h5{height:21.472000pt;}
.h20{height:24.480000pt;}
.h27{height:24.640000pt;}
.h23{height:24.672000pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h1b{height:28.687500pt;}
.h17{height:30.401250pt;}
.h12{height:31.343437pt;}
.h25{height:33.277500pt;}
.h22{height:36.800000pt;}
.h28{height:36.832000pt;}
.h1f{height:38.085312pt;}
.h21{height:38.441250pt;}
.h1a{height:41.745000pt;}
.h2d{height:42.649687pt;}
.h1c{height:43.031250pt;}
.h16{height:45.375000pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h24{height:49.120000pt;}
.h2e{height:49.148438pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h2{height:52.834688pt;}
.h2c{height:54.390938pt;}
.h18{height:54.570000pt;}
.h19{height:55.080000pt;}
.h15{height:56.843750pt;}
.h1d{height:57.375000pt;}
.h13{height:58.563750pt;}
.h2b{height:70.773750pt;}
.hf{height:81.046875pt;}
.h11{height:89.472000pt;}
.hd{height:96.980000pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h2f{height:168.000000pt;}
.hb{height:272.226667pt;}
.h2a{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h29{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.520000pt;}
.w15{width:65.920000pt;}
.w6{width:78.720000pt;}
.w19{width:80.832000pt;}
.w1a{width:84.800000pt;}
.w1e{width:84.832000pt;}
.w17{width:88.032000pt;}
.w23{width:93.792000pt;}
.w1f{width:93.920000pt;}
.w1d{width:103.200000pt;}
.w1c{width:103.232000pt;}
.w20{width:103.712000pt;}
.w25{width:112.320000pt;}
.w11{width:112.480000pt;}
.w24{width:112.800000pt;}
.w18{width:118.400000pt;}
.w1b{width:122.272000pt;}
.w22{width:129.952000pt;}
.w16{width:131.712000pt;}
.w21{width:133.466667pt;}
.w12{width:150.586667pt;}
.w27{width:169.466667pt;}
.wf{width:176.186667pt;}
.w28{width:178.906667pt;}
.w26{width:179.106667pt;}
.w14{width:181.466667pt;}
.w13{width:185.826667pt;}
.w2a{width:189.626667pt;}
.wa{width:226.720000pt;}
.wb{width:262.400000pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w29{width:289.826667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.373333pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x11{left:-1.826667pt;}
.x0{left:0.000000pt;}
.x2c{left:3.040000pt;}
.x2d{left:4.160000pt;}
.x38{left:5.600000pt;}
.x3a{left:6.560000pt;}
.x6{left:7.712000pt;}
.xa{left:8.800000pt;}
.x3f{left:9.920000pt;}
.x53{left:10.880000pt;}
.x2f{left:12.160000pt;}
.x32{left:14.080000pt;}
.x31{left:15.680000pt;}
.x48{left:16.800000pt;}
.x45{left:18.560000pt;}
.xd{left:19.840000pt;}
.x37{left:20.800000pt;}
.x2e{left:22.560000pt;}
.x52{left:23.520000pt;}
.x4b{left:24.480000pt;}
.x5b{left:27.520000pt;}
.xc{left:29.440000pt;}
.x26{left:31.680000pt;}
.x17{left:33.440000pt;}
.x28{left:36.360000pt;}
.x2a{left:37.306667pt;}
.x30{left:38.400000pt;}
.x49{left:39.560000pt;}
.x50{left:40.480000pt;}
.x55{left:41.440000pt;}
.x54{left:43.040000pt;}
.x3e{left:44.480000pt;}
.x4{left:57.279988pt;}
.x22{left:61.279988pt;}
.x5{left:64.960000pt;}
.x1c{left:67.839988pt;}
.x18{left:73.600000pt;}
.x24{left:75.551988pt;}
.x1b{left:77.951988pt;}
.x34{left:80.831988pt;}
.x57{left:89.952000pt;}
.x25{left:94.592000pt;}
.x41{left:98.752000pt;}
.x19{left:100.800000pt;}
.x23{left:104.511988pt;}
.x40{left:114.111988pt;}
.x15{left:118.333333pt;}
.x8{left:122.120000pt;}
.x4a{left:124.671988pt;}
.x36{left:125.631988pt;}
.x51{left:138.106655pt;}
.x14{left:142.586667pt;}
.xf{left:145.146667pt;}
.x4c{left:165.306667pt;}
.x1a{left:166.440000pt;}
.x5d{left:180.040000pt;}
.x42{left:184.186667pt;}
.x58{left:202.906667pt;}
.x27{left:207.706667pt;}
.x33{left:227.426655pt;}
.x56{left:243.106655pt;}
.x21{left:249.346655pt;}
.x4d{left:297.666667pt;}
.x39{left:299.586667pt;}
.x43{left:307.106667pt;}
.x3{left:345.506655pt;}
.x29{left:358.946667pt;}
.x13{left:361.026667pt;}
.xe{left:362.786667pt;}
.x16{left:366.173333pt;}
.x12{left:373.120000pt;}
.x59{left:382.653333pt;}
.x10{left:390.720000pt;}
.x1d{left:392.893322pt;}
.x5c{left:405.533333pt;}
.x1{left:410.493322pt;}
.x7{left:418.333333pt;}
.x4e{left:420.573333pt;}
.x44{left:430.013333pt;}
.x3b{left:431.933333pt;}
.x3c{left:520.773333pt;}
.x1e{left:524.933322pt;}
.x46{left:534.053333pt;}
.x2b{left:545.413333pt;}
.x5a{left:552.773333pt;}
.x4f{left:619.013333pt;}
.x47{left:637.893333pt;}
.x3d{left:639.973333pt;}
.x2{left:695.359988pt;}
.x35{left:709.919988pt;}
.xb{left:714.560000pt;}
.x1f{left:723.199976pt;}
.x20{left:728.639988pt;}
.x9{left:745.440000pt;}
}




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