
    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_d42ebf2a98dd14b9e3ceca90.woff2')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_a1cbf46818f545a168d369e0.woff2')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_5b701b27900e43e4916f0910.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_70051b77708fbf03c3c4d7e2.woff2')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_48e7b54801b698a214bc1b0d.woff2')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_50a7cff37dfabfb5616965fc.woff2')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_ca4fab24bc9d7220b7be92e9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_928ed276e13f42a63c5a5584.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1f4675fe77d8ba9dac48edc0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_00976b3ca76795abac8256fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.870117;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls1d{letter-spacing:-1.260000px;}
.ls17{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.126000px;}
.ls12{letter-spacing:-0.018000px;}
.ls4{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.023040px;}
.ls7{letter-spacing:0.034560px;}
.lsc{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.153360px;}
.lsb{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.234000px;}
.ls1{letter-spacing:0.273360px;}
.ls9{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.540000px;}
.lse{letter-spacing:8.028000px;}
.lsd{letter-spacing:9.468000px;}
.lsf{letter-spacing:19.548000px;}
.ls10{letter-spacing:20.268000px;}
.ls1c{letter-spacing:25.308000px;}
.ls8{letter-spacing:29.700000px;}
.ls11{letter-spacing:48.348000px;}
.ls13{letter-spacing:48.492000px;}
.ls18{letter-spacing:52.668000px;}
.ls1b{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;}
}
.wsb{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.595840px;}
.ws8{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.716000px;}
.ws6{word-spacing:-13.518000px;}
.ws5{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.374000px;}
.ws2{word-spacing:-13.140000px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-3.769920px;}
._6{margin-left:-2.700000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._4{width:2.862000px;}
._7{width:3.996000px;}
._a{width:5.184000px;}
._d{width:6.372000px;}
._9{width:7.506000px;}
._8{width:8.802000px;}
._13{width:10.278720px;}
._10{width:11.334000px;}
._17{width:12.420000px;}
._f{width:14.518320px;}
._20{width:15.648240px;}
._5{width:16.686000px;}
._14{width:17.820000px;}
._c{width:19.661040px;}
._b{width:20.682000px;}
._1c{width:22.572000px;}
._e{width:24.516000px;}
._11{width:25.650000px;}
._3{width:26.730000px;}
._15{width:28.134000px;}
._1d{width:29.292960px;}
._21{width:30.849360px;}
._1a{width:31.872000px;}
._1f{width:33.149520px;}
._3b{width:34.349280px;}
._1e{width:35.370000px;}
._16{width:37.152000px;}
._25{width:38.216640px;}
._1b{width:39.960000px;}
._26{width:41.639520px;}
._18{width:43.416000px;}
._19{width:44.766000px;}
._24{width:46.548000px;}
._3c{width:52.283520px;}
._23{width:53.892000px;}
._22{width:55.026000px;}
._3a{width:57.726000px;}
._2b{width:61.290000px;}
._2c{width:62.537520px;}
._35{width:72.036000px;}
._38{width:76.842000px;}
._39{width:77.976000px;}
._2d{width:88.830000px;}
._27{width:91.692000px;}
._30{width:153.738000px;}
._31{width:154.794000px;}
._2f{width:173.560320px;}
._2e{width:175.284000px;}
._2a{width:198.882000px;}
._3d{width:227.178000px;}
._34{width:237.006000px;}
._37{width:333.252000px;}
._36{width:334.854000px;}
._29{width:344.088000px;}
._28{width:345.330000px;}
._33{width:399.366000px;}
._32{width:816.966000px;}
._2{width:2903.467200px;}
.fc7{color:rgb(77,81,86);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc6{color:rgb(30,29,26);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.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;}
.fs8{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y49{bottom:-3.930000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.600000px;}
.y30{bottom:3.780000px;}
.y2{bottom:5.580000px;}
.y4{bottom:6.480000px;}
.y4f{bottom:7.170000px;}
.y3a{bottom:8.460000px;}
.yc6{bottom:9.720000px;}
.ybd{bottom:9.750000px;}
.y122{bottom:9.765000px;}
.y11d{bottom:9.900000px;}
.y38{bottom:12.060000px;}
.y127{bottom:14.220000px;}
.y36{bottom:16.200000px;}
.y34{bottom:18.720000px;}
.yc2{bottom:19.080000px;}
.y8{bottom:22.500000px;}
.yed{bottom:23.040000px;}
.ydc{bottom:27.540000px;}
.ybc{bottom:27.570000px;}
.y121{bottom:27.585000px;}
.yc5{bottom:27.720000px;}
.y126{bottom:32.220000px;}
.y47{bottom:35.895000px;}
.y7{bottom:41.040000px;}
.yc1{bottom:41.400000px;}
.ydb{bottom:45.360000px;}
.yc4{bottom:45.540000px;}
.ye7{bottom:45.570000px;}
.yf0{bottom:45.585000px;}
.y120{bottom:49.905000px;}
.y11c{bottom:50.040000px;}
.y6{bottom:56.520000px;}
.yea{bottom:58.860000px;}
.yc0{bottom:59.220000px;}
.yda{bottom:63.180000px;}
.yeb{bottom:63.360000px;}
.ye6{bottom:63.390000px;}
.yef{bottom:63.405000px;}
.yc3{bottom:63.540000px;}
.y11e{bottom:67.680000px;}
.y124{bottom:67.860000px;}
.ye0{bottom:72.210000px;}
.ye2{bottom:76.710000px;}
.yd9{bottom:81.000000px;}
.ye9{bottom:81.180000px;}
.ye5{bottom:81.210000px;}
.ybf{bottom:81.720000px;}
.y2e{bottom:81.900000px;}
.y14a{bottom:82.260000px;}
.y1c9{bottom:82.980000px;}
.yfa{bottom:83.520000px;}
.y44{bottom:84.495000px;}
.y12f{bottom:89.640000px;}
.ydf{bottom:90.030000px;}
.y175{bottom:90.540000px;}
.y19a{bottom:91.080000px;}
.y1f{bottom:91.800000px;}
.y1a2{bottom:92.160000px;}
.ye1{bottom:94.530000px;}
.yd8{bottom:99.000000px;}
.ye4{bottom:99.030000px;}
.y2d{bottom:99.720000px;}
.yba{bottom:99.900000px;}
.y149{bottom:100.080000px;}
.y18e{bottom:100.800000px;}
.yf9{bottom:101.340000px;}
.y43{bottom:104.295000px;}
.y12e{bottom:107.460000px;}
.y174{bottom:108.540000px;}
.y199{bottom:108.900000px;}
.y1e{bottom:109.620000px;}
.y1a1{bottom:109.980000px;}
.yde{bottom:112.350000px;}
.ye3{bottom:116.850000px;}
.yd7{bottom:116.865000px;}
.y2c{bottom:117.720000px;}
.y148{bottom:117.900000px;}
.y18d{bottom:118.620000px;}
.yf8{bottom:119.340000px;}
.y42{bottom:124.095000px;}
.y12d{bottom:125.280000px;}
.y173{bottom:126.360000px;}
.y89{bottom:126.720000px;}
.y1d{bottom:127.620000px;}
.y1a0{bottom:127.800000px;}
.yfd{bottom:128.160000px;}
.yd6{bottom:134.685000px;}
.y2b{bottom:135.540000px;}
.y147{bottom:135.720000px;}
.yb9{bottom:136.620000px;}
.yf7{bottom:137.160000px;}
.y12c{bottom:143.100000px;}
.y172{bottom:144.180000px;}
.y88{bottom:144.540000px;}
.y32{bottom:145.080000px;}
.y1c{bottom:145.440000px;}
.y19f{bottom:145.620000px;}
.yfc{bottom:145.980000px;}
.yd5{bottom:152.505000px;}
.y2a{bottom:153.360000px;}
.y146{bottom:153.540000px;}
.y18c{bottom:154.440000px;}
.yb8{bottom:154.620000px;}
.yf6{bottom:154.980000px;}
.y12b{bottom:160.920000px;}
.y171{bottom:162.000000px;}
.y198{bottom:162.540000px;}
.y1c8{bottom:163.440000px;}
.y19e{bottom:163.620000px;}
.yfb{bottom:163.800000px;}
.y40{bottom:163.875000px;}
.ycf{bottom:165.825000px;}
.yd4{bottom:170.325000px;}
.y1d7{bottom:171.000000px;}
.y29{bottom:171.180000px;}
.y87{bottom:171.540000px;}
.y1b{bottom:172.260000px;}
.yb7{bottom:172.440000px;}
.yf5{bottom:172.800000px;}
.y12a{bottom:178.950000px;}
.ycb{bottom:179.325000px;}
.y170{bottom:179.850000px;}
.y1c7{bottom:181.290000px;}
.y19d{bottom:181.470000px;}
.y3f{bottom:183.675000px;}
.yce{bottom:183.825000px;}
.yd3{bottom:188.325000px;}
.y1d6{bottom:188.850000px;}
.y28{bottom:189.030000px;}
.y86{bottom:189.390000px;}
.y1a{bottom:190.110000px;}
.yb6{bottom:190.290000px;}
.yf4{bottom:190.650000px;}
.y129{bottom:196.770000px;}
.yca{bottom:197.145000px;}
.y16f{bottom:197.670000px;}
.y1c6{bottom:199.110000px;}
.y19c{bottom:199.290000px;}
.ycd{bottom:201.645000px;}
.y3e{bottom:203.475000px;}
.yd2{bottom:206.145000px;}
.y1d5{bottom:206.670000px;}
.y85{bottom:207.210000px;}
.y19{bottom:207.930000px;}
.yb5{bottom:208.110000px;}
.yf3{bottom:208.650000px;}
.y128{bottom:214.590000px;}
.yc9{bottom:214.965000px;}
.y27{bottom:215.850000px;}
.y145{bottom:216.210000px;}
.y19b{bottom:219.450000px;}
.ycc{bottom:219.465000px;}
.y3d{bottom:223.275000px;}
.yd1{bottom:223.965000px;}
.y16e{bottom:224.670000px;}
.y84{bottom:225.030000px;}
.y18b{bottom:225.750000px;}
.y18{bottom:225.930000px;}
.yf2{bottom:226.470000px;}
.y26{bottom:233.850000px;}
.y144{bottom:234.030000px;}
.yc8{bottom:237.285000px;}
.y1de{bottom:239.610000px;}
.yd0{bottom:241.785000px;}
.y1d4{bottom:242.490000px;}
.y83{bottom:242.850000px;}
.y3c{bottom:243.255000px;}
.y17{bottom:243.750000px;}
.y16d{bottom:251.490000px;}
.y25{bottom:251.670000px;}
.y143{bottom:251.850000px;}
.y125{bottom:254.730000px;}
.y1d3{bottom:260.310000px;}
.y82{bottom:260.670000px;}
.y16{bottom:261.570000px;}
.yb4{bottom:261.750000px;}
.y1dd{bottom:266.430000px;}
.y16c{bottom:269.310000px;}
.y24{bottom:269.490000px;}
.y142{bottom:269.670000px;}
.y1c5{bottom:270.750000px;}
.yf1{bottom:275.610000px;}
.y81{bottom:278.670000px;}
.y15{bottom:279.390000px;}
.yb3{bottom:279.570000px;}
.y18a{bottom:281.730000px;}
.y1dc{bottom:282.990000px;}
.y16b{bottom:287.130000px;}
.y23{bottom:287.310000px;}
.y141{bottom:287.670000px;}
.y1c4{bottom:288.570000px;}
.y80{bottom:296.490000px;}
.y14{bottom:297.210000px;}
.y1d2{bottom:304.950000px;}
.y22{bottom:305.130000px;}
.y140{bottom:305.490000px;}
.yb2{bottom:306.390000px;}
.y16a{bottom:313.950000px;}
.y189{bottom:314.130000px;}
.y7f{bottom:314.310000px;}
.y13{bottom:315.030000px;}
.y123{bottom:322.590000px;}
.y1d1{bottom:322.950000px;}
.y21{bottom:323.130000px;}
.y13f{bottom:323.310000px;}
.yb1{bottom:324.210000px;}
.y169{bottom:331.950000px;}
.y7e{bottom:332.130000px;}
.y12{bottom:335.370000px;}
.y1d0{bottom:340.770000px;}
.y20{bottom:340.950000px;}
.y13e{bottom:341.130000px;}
.yb0{bottom:342.030000px;}
.y168{bottom:349.770000px;}
.y188{bottom:349.950000px;}
.y1cf{bottom:358.590000px;}
.y7d{bottom:358.950000px;}
.yaf{bottom:359.850000px;}
.y167{bottom:367.590000px;}
.y187{bottom:367.770000px;}
.y197{bottom:367.950000px;}
.y1c3{bottom:368.850000px;}
.y11{bottom:370.650000px;}
.yee{bottom:374.610000px;}
.y7c{bottom:376.950000px;}
.yae{bottom:377.850000px;}
.y166{bottom:385.410000px;}
.y186{bottom:385.590000px;}
.y196{bottom:385.770000px;}
.y1c2{bottom:386.850000px;}
.y3b{bottom:388.980000px;}
.y7b{bottom:394.770000px;}
.yad{bottom:395.670000px;}
.y165{bottom:403.230000px;}
.y185{bottom:403.410000px;}
.y195{bottom:403.590000px;}
.y1c1{bottom:404.670000px;}
.y48{bottom:404.850000px;}
.y11f{bottom:408.270000px;}
.y7a{bottom:412.590000px;}
.yac{bottom:413.490000px;}
.y164{bottom:421.095000px;}
.y184{bottom:421.275000px;}
.y194{bottom:421.455000px;}
.y13d{bottom:421.635000px;}
.y1c0{bottom:422.535000px;}
.y46{bottom:424.875000px;}
.y1db{bottom:430.095000px;}
.y79{bottom:430.455000px;}
.yab{bottom:431.355000px;}
.y183{bottom:439.095000px;}
.y13c{bottom:439.455000px;}
.y1bf{bottom:440.355000px;}
.y163{bottom:448.095000px;}
.y78{bottom:448.275000px;}
.y45{bottom:453.675000px;}
.yec{bottom:455.835000px;}
.y1ce{bottom:456.915000px;}
.y182{bottom:457.095000px;}
.y13b{bottom:457.275000px;}
.yaa{bottom:458.175000px;}
.y162{bottom:465.915000px;}
.y77{bottom:466.095000px;}
.y1be{bottom:467.175000px;}
.y181{bottom:474.915000px;}
.y13a{bottom:475.095000px;}
.ya9{bottom:476.175000px;}
.y161{bottom:483.735000px;}
.y76{bottom:484.095000px;}
.y1bd{bottom:485.175000px;}
.y180{bottom:492.735000px;}
.y139{bottom:493.095000px;}
.ya8{bottom:493.995000px;}
.y160{bottom:501.555000px;}
.y75{bottom:501.915000px;}
.y1bc{bottom:502.995000px;}
.y17f{bottom:510.555000px;}
.y138{bottom:510.915000px;}
.ya7{bottom:511.815000px;}
.y15f{bottom:519.375000px;}
.y74{bottom:519.735000px;}
.y1bb{bottom:520.815000px;}
.y17e{bottom:528.375000px;}
.y137{bottom:528.735000px;}
.ya6{bottom:529.635000px;}
.y41{bottom:533.055000px;}
.y15e{bottom:537.375000px;}
.y73{bottom:537.555000px;}
.y1ba{bottom:538.635000px;}
.y1da{bottom:546.375000px;}
.y136{bottom:546.555000px;}
.ya5{bottom:547.455000px;}
.ye8{bottom:554.835000px;}
.y15d{bottom:555.195000px;}
.y72{bottom:555.375000px;}
.y1b9{bottom:556.455000px;}
.y11b{bottom:561.675000px;}
.y135{bottom:564.375000px;}
.ya4{bottom:565.275000px;}
.y15c{bottom:573.015000px;}
.y17d{bottom:573.195000px;}
.y71{bottom:573.375000px;}
.y1b8{bottom:576.795000px;}
.y1cd{bottom:582.015000px;}
.y134{bottom:582.375000px;}
.y15b{bottom:590.835000px;}
.y17c{bottom:591.015000px;}
.y193{bottom:591.195000px;}
.ya3{bottom:592.275000px;}
.y1cc{bottom:599.835000px;}
.y70{bottom:600.195000px;}
.y17b{bottom:608.835000px;}
.y192{bottom:609.015000px;}
.y1b7{bottom:609.195000px;}
.ya2{bottom:610.095000px;}
.y15a{bottom:617.655000px;}
.y6f{bottom:618.015000px;}
.y17a{bottom:626.655000px;}
.y191{bottom:626.835000px;}
.y1b6{bottom:627.015000px;}
.ya1{bottom:627.915000px;}
.y11a{bottom:629.535000px;}
.y159{bottom:635.475000px;}
.y6e{bottom:635.835000px;}
.y179{bottom:644.475000px;}
.y190{bottom:644.655000px;}
.y1b5{bottom:644.835000px;}
.ya0{bottom:645.735000px;}
.y158{bottom:653.475000px;}
.y6d{bottom:653.655000px;}
.ydd{bottom:653.835000px;}
.y119{bottom:662.505000px;}
.y1b4{bottom:662.685000px;}
.y9f{bottom:663.585000px;}
.y10{bottom:667.905000px;}
.y157{bottom:671.325000px;}
.y6c{bottom:671.505000px;}
.y1b3{bottom:680.505000px;}
.y9e{bottom:681.585000px;}
.y156{bottom:689.145000px;}
.y113{bottom:689.325000px;}
.y6b{bottom:689.505000px;}
.y1cb{bottom:698.145000px;}
.y1b2{bottom:698.505000px;}
.y9d{bottom:699.405000px;}
.yf{bottom:706.965000px;}
.y178{bottom:707.145000px;}
.y6a{bottom:707.325000px;}
.y155{bottom:715.965000px;}
.y112{bottom:716.145000px;}
.y1b1{bottom:716.325000px;}
.y9c{bottom:717.225000px;}
.y177{bottom:724.965000px;}
.y69{bottom:725.145000px;}
.ye{bottom:725.865000px;}
.y39{bottom:731.805000px;}
.y1ca{bottom:733.785000px;}
.y111{bottom:733.965000px;}
.y1b0{bottom:734.145000px;}
.y9b{bottom:735.045000px;}
.y154{bottom:742.785000px;}
.y68{bottom:742.965000px;}
.y110{bottom:751.785000px;}
.y1af{bottom:751.965000px;}
.y9a{bottom:752.865000px;}
.y67{bottom:760.785000px;}
.yd{bottom:766.365000px;}
.y10f{bottom:769.785000px;}
.y99{bottom:770.685000px;}
.y37{bottom:772.305000px;}
.y153{bottom:778.605000px;}
.y66{bottom:778.785000px;}
.yc7{bottom:784.185000px;}
.y10e{bottom:787.605000px;}
.y133{bottom:787.785000px;}
.y98{bottom:788.685000px;}
.y152{bottom:796.425000px;}
.y65{bottom:796.605000px;}
.y10d{bottom:805.425000px;}
.y132{bottom:805.605000px;}
.y97{bottom:806.505000px;}
.yc{bottom:814.065000px;}
.y151{bottom:814.245000px;}
.y64{bottom:814.425000px;}
.y1ae{bottom:814.605000px;}
.y35{bottom:820.365000px;}
.y10c{bottom:823.245000px;}
.y131{bottom:823.425000px;}
.y96{bottom:824.325000px;}
.y150{bottom:832.065000px;}
.y118{bottom:832.245000px;}
.y1ad{bottom:832.425000px;}
.y10b{bottom:841.065000px;}
.y63{bottom:841.245000px;}
.y95{bottom:842.145000px;}
.y117{bottom:850.065000px;}
.y1ac{bottom:850.245000px;}
.y10a{bottom:858.885000px;}
.y62{bottom:859.065000px;}
.y94{bottom:859.965000px;}
.y116{bottom:867.885000px;}
.y1ab{bottom:868.065000px;}
.y33{bottom:876.165000px;}
.y61{bottom:876.885000px;}
.y115{bottom:885.885000px;}
.y93{bottom:886.965000px;}
.y109{bottom:894.705000px;}
.y60{bottom:894.885000px;}
.y114{bottom:903.750000px;}
.y1aa{bottom:903.930000px;}
.y92{bottom:904.830000px;}
.y108{bottom:912.570000px;}
.y5f{bottom:912.750000px;}
.y176{bottom:921.570000px;}
.y1a9{bottom:921.750000px;}
.y91{bottom:922.650000px;}
.y107{bottom:930.390000px;}
.y5e{bottom:930.570000px;}
.yb{bottom:934.350000px;}
.y1d9{bottom:939.390000px;}
.y1a8{bottom:939.570000px;}
.y90{bottom:940.470000px;}
.y31{bottom:941.190000px;}
.y106{bottom:948.210000px;}
.y5d{bottom:948.390000px;}
.y4e{bottom:955.800000px;}
.y1d8{bottom:957.210000px;}
.y1a7{bottom:957.390000px;}
.y8f{bottom:958.290000px;}
.y5c{bottom:966.210000px;}
.y14f{bottom:975.210000px;}
.y8e{bottom:976.110000px;}
.y105{bottom:984.030000px;}
.y5b{bottom:984.210000px;}
.y4d{bottom:989.250000px;}
.y14e{bottom:993.030000px;}
.y1a6{bottom:993.210000px;}
.y8d{bottom:994.110000px;}
.y104{bottom:1001.850000px;}
.y5a{bottom:1002.030000px;}
.y14d{bottom:1010.850000px;}
.y1a5{bottom:1011.030000px;}
.y8c{bottom:1011.930000px;}
.y4c{bottom:1015.530000px;}
.y103{bottom:1019.670000px;}
.y59{bottom:1019.850000px;}
.y14c{bottom:1028.670000px;}
.y1a4{bottom:1028.850000px;}
.y8b{bottom:1032.090000px;}
.y58{bottom:1037.670000px;}
.ybe{bottom:1039.290000px;}
.y4b{bottom:1041.810000px;}
.y102{bottom:1046.490000px;}
.y1a3{bottom:1046.670000px;}
.y57{bottom:1055.490000px;}
.y101{bottom:1064.310000px;}
.y8a{bottom:1064.490000px;}
.y4a{bottom:1068.270000px;}
.y130{bottom:1073.310000px;}
.y56{bottom:1082.310000px;}
.y100{bottom:1091.310000px;}
.y14b{bottom:1100.130000px;}
.y55{bottom:1100.310000px;}
.ya{bottom:1107.510000px;}
.yff{bottom:1109.130000px;}
.y54{bottom:1118.130000px;}
.yfe{bottom:1126.950000px;}
.y53{bottom:1135.950000px;}
.ybb{bottom:1138.830000px;}
.y18f{bottom:1144.800000px;}
.y52{bottom:1153.800000px;}
.y2f{bottom:1167.840000px;}
.y51{bottom:1171.620000px;}
.y50{bottom:1189.440000px;}
.y1{bottom:1195.380000px;}
.y5{bottom:1215.000000px;}
.y3{bottom:1224.000000px;}
.h2{height:17.640000px;}
.hd{height:20.700000px;}
.h4{height:21.960000px;}
.h26{height:26.820000px;}
.h15{height:28.800000px;}
.h3{height:34.036523px;}
.h14{height:36.000000px;}
.h5{height:36.068555px;}
.hb{height:37.705078px;}
.h8{height:38.100586px;}
.h21{height:39.313477px;}
.h1d{height:40.684570px;}
.h1a{height:41.726953px;}
.h19{height:42.164648px;}
.h12{height:44.280000px;}
.h7{height:44.507812px;}
.h1e{height:44.676000px;}
.h20{height:45.509766px;}
.h6{height:46.251562px;}
.h1c{height:46.511719px;}
.h16{height:46.736719px;}
.h18{height:49.255313px;}
.h13{height:49.906406px;}
.h2b{height:50.273438px;}
.h10{height:52.416000px;}
.ha{height:53.709961px;}
.hc{height:54.864844px;}
.h9{height:55.825312px;}
.h11{height:59.436914px;}
.he{height:65.554453px;}
.h29{height:66.996000px;}
.h27{height:67.140000px;}
.h25{height:80.496000px;}
.h28{height:84.780000px;}
.h2a{height:84.960000px;}
.h24{height:98.280000px;}
.h1f{height:98.820000px;}
.h23{height:129.456000px;}
.h1b{height:132.480000px;}
.hf{height:160.560000px;}
.h22{height:254.370000px;}
.h17{height:266.400000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:85.320000px;}
.wb{width:89.856000px;}
.wf{width:122.616000px;}
.wd{width:144.720000px;}
.w11{width:147.816000px;}
.wc{width:175.530000px;}
.w10{width:197.310000px;}
.w12{width:308.730000px;}
.we{width:350.535000px;}
.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;}
.x1e{left:7.740000px;}
.xe{left:10.800000px;}
.xf{left:18.720000px;}
.x22{left:20.910000px;}
.x5{left:53.999987px;}
.x28{left:57.240000px;}
.x12{left:61.200000px;}
.x1d{left:64.980000px;}
.x13{left:71.999987px;}
.x25{left:80.999987px;}
.xd{left:92.700000px;}
.x1{left:100.116000px;}
.x26{left:108.035987px;}
.x14{left:111.090000px;}
.x1f{left:155.730000px;}
.x6{left:161.669987px;}
.xa{left:174.089987px;}
.x1a{left:177.915000px;}
.x29{left:180.570000px;}
.x19{left:198.360000px;}
.x27{left:210.089987px;}
.x11{left:237.135000px;}
.x17{left:256.889987px;}
.x15{left:265.529987px;}
.x1c{left:307.874987px;}
.x10{left:313.455000px;}
.x18{left:317.594987px;}
.x20{left:331.995000px;}
.x7{left:357.014987px;}
.x16{left:358.634987px;}
.x3{left:367.920000px;}
.x2a{left:378.615000px;}
.x1b{left:446.474987px;}
.x4{left:460.230000px;}
.xc{left:465.914987px;}
.x21{left:477.615000px;}
.x23{left:492.944987px;}
.x2c{left:508.424987px;}
.x24{left:519.944987px;}
.x2b{left:527.145000px;}
.x8{left:837.149987px;}
.x9{left:839.309987px;}
.xb{left:846.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.120000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.112000pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.020480pt;}
.ls7{letter-spacing:0.030720pt;}
.lsc{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.136320pt;}
.lsb{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.208000pt;}
.ls1{letter-spacing:0.242987pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.480000pt;}
.lse{letter-spacing:7.136000pt;}
.lsd{letter-spacing:8.416000pt;}
.lsf{letter-spacing:17.376000pt;}
.ls10{letter-spacing:18.016000pt;}
.ls1c{letter-spacing:22.496000pt;}
.ls8{letter-spacing:26.400000pt;}
.ls11{letter-spacing:42.976000pt;}
.ls13{letter-spacing:43.104000pt;}
.ls18{letter-spacing:46.816000pt;}
.ls1b{letter-spacing:46.944000pt;}
.wsb{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.974080pt;}
.ws8{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.192000pt;}
.ws6{word-spacing:-12.016000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.888000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-3.351040pt;}
._6{margin-left:-2.400000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._4{width:2.544000pt;}
._7{width:3.552000pt;}
._a{width:4.608000pt;}
._d{width:5.664000pt;}
._9{width:6.672000pt;}
._8{width:7.824000pt;}
._13{width:9.136640pt;}
._10{width:10.074667pt;}
._17{width:11.040000pt;}
._f{width:12.905173pt;}
._20{width:13.909547pt;}
._5{width:14.832000pt;}
._14{width:15.840000pt;}
._c{width:17.476480pt;}
._b{width:18.384000pt;}
._1c{width:20.064000pt;}
._e{width:21.792000pt;}
._11{width:22.800000pt;}
._3{width:23.760000pt;}
._15{width:25.008000pt;}
._1d{width:26.038187pt;}
._21{width:27.421653pt;}
._1a{width:28.330667pt;}
._1f{width:29.466240pt;}
._3b{width:30.532693pt;}
._1e{width:31.440000pt;}
._16{width:33.024000pt;}
._25{width:33.970347pt;}
._1b{width:35.520000pt;}
._26{width:37.012907pt;}
._18{width:38.592000pt;}
._19{width:39.792000pt;}
._24{width:41.376000pt;}
._3c{width:46.474240pt;}
._23{width:47.904000pt;}
._22{width:48.912000pt;}
._3a{width:51.312000pt;}
._2b{width:54.480000pt;}
._2c{width:55.588907pt;}
._35{width:64.032000pt;}
._38{width:68.304000pt;}
._39{width:69.312000pt;}
._2d{width:78.960000pt;}
._27{width:81.504000pt;}
._30{width:136.656000pt;}
._31{width:137.594667pt;}
._2f{width:154.275840pt;}
._2e{width:155.808000pt;}
._2a{width:176.784000pt;}
._3d{width:201.936000pt;}
._34{width:210.672000pt;}
._37{width:296.224000pt;}
._36{width:297.648000pt;}
._29{width:305.856000pt;}
._28{width:306.960000pt;}
._33{width:354.992000pt;}
._32{width:726.192000pt;}
._2{width:2580.859733pt;}
.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;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y49{bottom:-3.493333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.200000pt;}
.y30{bottom:3.360000pt;}
.y2{bottom:4.960000pt;}
.y4{bottom:5.760000pt;}
.y4f{bottom:6.373333pt;}
.y3a{bottom:7.520000pt;}
.yc6{bottom:8.640000pt;}
.ybd{bottom:8.666667pt;}
.y122{bottom:8.680000pt;}
.y11d{bottom:8.800000pt;}
.y38{bottom:10.720000pt;}
.y127{bottom:12.640000pt;}
.y36{bottom:14.400000pt;}
.y34{bottom:16.640000pt;}
.yc2{bottom:16.960000pt;}
.y8{bottom:20.000000pt;}
.yed{bottom:20.480000pt;}
.ydc{bottom:24.480000pt;}
.ybc{bottom:24.506667pt;}
.y121{bottom:24.520000pt;}
.yc5{bottom:24.640000pt;}
.y126{bottom:28.640000pt;}
.y47{bottom:31.906667pt;}
.y7{bottom:36.480000pt;}
.yc1{bottom:36.800000pt;}
.ydb{bottom:40.320000pt;}
.yc4{bottom:40.480000pt;}
.ye7{bottom:40.506667pt;}
.yf0{bottom:40.520000pt;}
.y120{bottom:44.360000pt;}
.y11c{bottom:44.480000pt;}
.y6{bottom:50.240000pt;}
.yea{bottom:52.320000pt;}
.yc0{bottom:52.640000pt;}
.yda{bottom:56.160000pt;}
.yeb{bottom:56.320000pt;}
.ye6{bottom:56.346667pt;}
.yef{bottom:56.360000pt;}
.yc3{bottom:56.480000pt;}
.y11e{bottom:60.160000pt;}
.y124{bottom:60.320000pt;}
.ye0{bottom:64.186667pt;}
.ye2{bottom:68.186667pt;}
.yd9{bottom:72.000000pt;}
.ye9{bottom:72.160000pt;}
.ye5{bottom:72.186667pt;}
.ybf{bottom:72.640000pt;}
.y2e{bottom:72.800000pt;}
.y14a{bottom:73.120000pt;}
.y1c9{bottom:73.760000pt;}
.yfa{bottom:74.240000pt;}
.y44{bottom:75.106667pt;}
.y12f{bottom:79.680000pt;}
.ydf{bottom:80.026667pt;}
.y175{bottom:80.480000pt;}
.y19a{bottom:80.960000pt;}
.y1f{bottom:81.600000pt;}
.y1a2{bottom:81.920000pt;}
.ye1{bottom:84.026667pt;}
.yd8{bottom:88.000000pt;}
.ye4{bottom:88.026667pt;}
.y2d{bottom:88.640000pt;}
.yba{bottom:88.800000pt;}
.y149{bottom:88.960000pt;}
.y18e{bottom:89.600000pt;}
.yf9{bottom:90.080000pt;}
.y43{bottom:92.706667pt;}
.y12e{bottom:95.520000pt;}
.y174{bottom:96.480000pt;}
.y199{bottom:96.800000pt;}
.y1e{bottom:97.440000pt;}
.y1a1{bottom:97.760000pt;}
.yde{bottom:99.866667pt;}
.ye3{bottom:103.866667pt;}
.yd7{bottom:103.880000pt;}
.y2c{bottom:104.640000pt;}
.y148{bottom:104.800000pt;}
.y18d{bottom:105.440000pt;}
.yf8{bottom:106.080000pt;}
.y42{bottom:110.306667pt;}
.y12d{bottom:111.360000pt;}
.y173{bottom:112.320000pt;}
.y89{bottom:112.640000pt;}
.y1d{bottom:113.440000pt;}
.y1a0{bottom:113.600000pt;}
.yfd{bottom:113.920000pt;}
.yd6{bottom:119.720000pt;}
.y2b{bottom:120.480000pt;}
.y147{bottom:120.640000pt;}
.yb9{bottom:121.440000pt;}
.yf7{bottom:121.920000pt;}
.y12c{bottom:127.200000pt;}
.y172{bottom:128.160000pt;}
.y88{bottom:128.480000pt;}
.y32{bottom:128.960000pt;}
.y1c{bottom:129.280000pt;}
.y19f{bottom:129.440000pt;}
.yfc{bottom:129.760000pt;}
.yd5{bottom:135.560000pt;}
.y2a{bottom:136.320000pt;}
.y146{bottom:136.480000pt;}
.y18c{bottom:137.280000pt;}
.yb8{bottom:137.440000pt;}
.yf6{bottom:137.760000pt;}
.y12b{bottom:143.040000pt;}
.y171{bottom:144.000000pt;}
.y198{bottom:144.480000pt;}
.y1c8{bottom:145.280000pt;}
.y19e{bottom:145.440000pt;}
.yfb{bottom:145.600000pt;}
.y40{bottom:145.666667pt;}
.ycf{bottom:147.400000pt;}
.yd4{bottom:151.400000pt;}
.y1d7{bottom:152.000000pt;}
.y29{bottom:152.160000pt;}
.y87{bottom:152.480000pt;}
.y1b{bottom:153.120000pt;}
.yb7{bottom:153.280000pt;}
.yf5{bottom:153.600000pt;}
.y12a{bottom:159.066667pt;}
.ycb{bottom:159.400000pt;}
.y170{bottom:159.866667pt;}
.y1c7{bottom:161.146667pt;}
.y19d{bottom:161.306667pt;}
.y3f{bottom:163.266667pt;}
.yce{bottom:163.400000pt;}
.yd3{bottom:167.400000pt;}
.y1d6{bottom:167.866667pt;}
.y28{bottom:168.026667pt;}
.y86{bottom:168.346667pt;}
.y1a{bottom:168.986667pt;}
.yb6{bottom:169.146667pt;}
.yf4{bottom:169.466667pt;}
.y129{bottom:174.906667pt;}
.yca{bottom:175.240000pt;}
.y16f{bottom:175.706667pt;}
.y1c6{bottom:176.986667pt;}
.y19c{bottom:177.146667pt;}
.ycd{bottom:179.240000pt;}
.y3e{bottom:180.866667pt;}
.yd2{bottom:183.240000pt;}
.y1d5{bottom:183.706667pt;}
.y85{bottom:184.186667pt;}
.y19{bottom:184.826667pt;}
.yb5{bottom:184.986667pt;}
.yf3{bottom:185.466667pt;}
.y128{bottom:190.746667pt;}
.yc9{bottom:191.080000pt;}
.y27{bottom:191.866667pt;}
.y145{bottom:192.186667pt;}
.y19b{bottom:195.066667pt;}
.ycc{bottom:195.080000pt;}
.y3d{bottom:198.466667pt;}
.yd1{bottom:199.080000pt;}
.y16e{bottom:199.706667pt;}
.y84{bottom:200.026667pt;}
.y18b{bottom:200.666667pt;}
.y18{bottom:200.826667pt;}
.yf2{bottom:201.306667pt;}
.y26{bottom:207.866667pt;}
.y144{bottom:208.026667pt;}
.yc8{bottom:210.920000pt;}
.y1de{bottom:212.986667pt;}
.yd0{bottom:214.920000pt;}
.y1d4{bottom:215.546667pt;}
.y83{bottom:215.866667pt;}
.y3c{bottom:216.226667pt;}
.y17{bottom:216.666667pt;}
.y16d{bottom:223.546667pt;}
.y25{bottom:223.706667pt;}
.y143{bottom:223.866667pt;}
.y125{bottom:226.426667pt;}
.y1d3{bottom:231.386667pt;}
.y82{bottom:231.706667pt;}
.y16{bottom:232.506667pt;}
.yb4{bottom:232.666667pt;}
.y1dd{bottom:236.826667pt;}
.y16c{bottom:239.386667pt;}
.y24{bottom:239.546667pt;}
.y142{bottom:239.706667pt;}
.y1c5{bottom:240.666667pt;}
.yf1{bottom:244.986667pt;}
.y81{bottom:247.706667pt;}
.y15{bottom:248.346667pt;}
.yb3{bottom:248.506667pt;}
.y18a{bottom:250.426667pt;}
.y1dc{bottom:251.546667pt;}
.y16b{bottom:255.226667pt;}
.y23{bottom:255.386667pt;}
.y141{bottom:255.706667pt;}
.y1c4{bottom:256.506667pt;}
.y80{bottom:263.546667pt;}
.y14{bottom:264.186667pt;}
.y1d2{bottom:271.066667pt;}
.y22{bottom:271.226667pt;}
.y140{bottom:271.546667pt;}
.yb2{bottom:272.346667pt;}
.y16a{bottom:279.066667pt;}
.y189{bottom:279.226667pt;}
.y7f{bottom:279.386667pt;}
.y13{bottom:280.026667pt;}
.y123{bottom:286.746667pt;}
.y1d1{bottom:287.066667pt;}
.y21{bottom:287.226667pt;}
.y13f{bottom:287.386667pt;}
.yb1{bottom:288.186667pt;}
.y169{bottom:295.066667pt;}
.y7e{bottom:295.226667pt;}
.y12{bottom:298.106667pt;}
.y1d0{bottom:302.906667pt;}
.y20{bottom:303.066667pt;}
.y13e{bottom:303.226667pt;}
.yb0{bottom:304.026667pt;}
.y168{bottom:310.906667pt;}
.y188{bottom:311.066667pt;}
.y1cf{bottom:318.746667pt;}
.y7d{bottom:319.066667pt;}
.yaf{bottom:319.866667pt;}
.y167{bottom:326.746667pt;}
.y187{bottom:326.906667pt;}
.y197{bottom:327.066667pt;}
.y1c3{bottom:327.866667pt;}
.y11{bottom:329.466667pt;}
.yee{bottom:332.986667pt;}
.y7c{bottom:335.066667pt;}
.yae{bottom:335.866667pt;}
.y166{bottom:342.586667pt;}
.y186{bottom:342.746667pt;}
.y196{bottom:342.906667pt;}
.y1c2{bottom:343.866667pt;}
.y3b{bottom:345.760000pt;}
.y7b{bottom:350.906667pt;}
.yad{bottom:351.706667pt;}
.y165{bottom:358.426667pt;}
.y185{bottom:358.586667pt;}
.y195{bottom:358.746667pt;}
.y1c1{bottom:359.706667pt;}
.y48{bottom:359.866667pt;}
.y11f{bottom:362.906667pt;}
.y7a{bottom:366.746667pt;}
.yac{bottom:367.546667pt;}
.y164{bottom:374.306667pt;}
.y184{bottom:374.466667pt;}
.y194{bottom:374.626667pt;}
.y13d{bottom:374.786667pt;}
.y1c0{bottom:375.586667pt;}
.y46{bottom:377.666667pt;}
.y1db{bottom:382.306667pt;}
.y79{bottom:382.626667pt;}
.yab{bottom:383.426667pt;}
.y183{bottom:390.306667pt;}
.y13c{bottom:390.626667pt;}
.y1bf{bottom:391.426667pt;}
.y163{bottom:398.306667pt;}
.y78{bottom:398.466667pt;}
.y45{bottom:403.266667pt;}
.yec{bottom:405.186667pt;}
.y1ce{bottom:406.146667pt;}
.y182{bottom:406.306667pt;}
.y13b{bottom:406.466667pt;}
.yaa{bottom:407.266667pt;}
.y162{bottom:414.146667pt;}
.y77{bottom:414.306667pt;}
.y1be{bottom:415.266667pt;}
.y181{bottom:422.146667pt;}
.y13a{bottom:422.306667pt;}
.ya9{bottom:423.266667pt;}
.y161{bottom:429.986667pt;}
.y76{bottom:430.306667pt;}
.y1bd{bottom:431.266667pt;}
.y180{bottom:437.986667pt;}
.y139{bottom:438.306667pt;}
.ya8{bottom:439.106667pt;}
.y160{bottom:445.826667pt;}
.y75{bottom:446.146667pt;}
.y1bc{bottom:447.106667pt;}
.y17f{bottom:453.826667pt;}
.y138{bottom:454.146667pt;}
.ya7{bottom:454.946667pt;}
.y15f{bottom:461.666667pt;}
.y74{bottom:461.986667pt;}
.y1bb{bottom:462.946667pt;}
.y17e{bottom:469.666667pt;}
.y137{bottom:469.986667pt;}
.ya6{bottom:470.786667pt;}
.y41{bottom:473.826667pt;}
.y15e{bottom:477.666667pt;}
.y73{bottom:477.826667pt;}
.y1ba{bottom:478.786667pt;}
.y1da{bottom:485.666667pt;}
.y136{bottom:485.826667pt;}
.ya5{bottom:486.626667pt;}
.ye8{bottom:493.186667pt;}
.y15d{bottom:493.506667pt;}
.y72{bottom:493.666667pt;}
.y1b9{bottom:494.626667pt;}
.y11b{bottom:499.266667pt;}
.y135{bottom:501.666667pt;}
.ya4{bottom:502.466667pt;}
.y15c{bottom:509.346667pt;}
.y17d{bottom:509.506667pt;}
.y71{bottom:509.666667pt;}
.y1b8{bottom:512.706667pt;}
.y1cd{bottom:517.346667pt;}
.y134{bottom:517.666667pt;}
.y15b{bottom:525.186667pt;}
.y17c{bottom:525.346667pt;}
.y193{bottom:525.506667pt;}
.ya3{bottom:526.466667pt;}
.y1cc{bottom:533.186667pt;}
.y70{bottom:533.506667pt;}
.y17b{bottom:541.186667pt;}
.y192{bottom:541.346667pt;}
.y1b7{bottom:541.506667pt;}
.ya2{bottom:542.306667pt;}
.y15a{bottom:549.026667pt;}
.y6f{bottom:549.346667pt;}
.y17a{bottom:557.026667pt;}
.y191{bottom:557.186667pt;}
.y1b6{bottom:557.346667pt;}
.ya1{bottom:558.146667pt;}
.y11a{bottom:559.586667pt;}
.y159{bottom:564.866667pt;}
.y6e{bottom:565.186667pt;}
.y179{bottom:572.866667pt;}
.y190{bottom:573.026667pt;}
.y1b5{bottom:573.186667pt;}
.ya0{bottom:573.986667pt;}
.y158{bottom:580.866667pt;}
.y6d{bottom:581.026667pt;}
.ydd{bottom:581.186667pt;}
.y119{bottom:588.893333pt;}
.y1b4{bottom:589.053333pt;}
.y9f{bottom:589.853333pt;}
.y10{bottom:593.693333pt;}
.y157{bottom:596.733333pt;}
.y6c{bottom:596.893333pt;}
.y1b3{bottom:604.893333pt;}
.y9e{bottom:605.853333pt;}
.y156{bottom:612.573333pt;}
.y113{bottom:612.733333pt;}
.y6b{bottom:612.893333pt;}
.y1cb{bottom:620.573333pt;}
.y1b2{bottom:620.893333pt;}
.y9d{bottom:621.693333pt;}
.yf{bottom:628.413333pt;}
.y178{bottom:628.573333pt;}
.y6a{bottom:628.733333pt;}
.y155{bottom:636.413333pt;}
.y112{bottom:636.573333pt;}
.y1b1{bottom:636.733333pt;}
.y9c{bottom:637.533333pt;}
.y177{bottom:644.413333pt;}
.y69{bottom:644.573333pt;}
.ye{bottom:645.213333pt;}
.y39{bottom:650.493333pt;}
.y1ca{bottom:652.253333pt;}
.y111{bottom:652.413333pt;}
.y1b0{bottom:652.573333pt;}
.y9b{bottom:653.373333pt;}
.y154{bottom:660.253333pt;}
.y68{bottom:660.413333pt;}
.y110{bottom:668.253333pt;}
.y1af{bottom:668.413333pt;}
.y9a{bottom:669.213333pt;}
.y67{bottom:676.253333pt;}
.yd{bottom:681.213333pt;}
.y10f{bottom:684.253333pt;}
.y99{bottom:685.053333pt;}
.y37{bottom:686.493333pt;}
.y153{bottom:692.093333pt;}
.y66{bottom:692.253333pt;}
.yc7{bottom:697.053333pt;}
.y10e{bottom:700.093333pt;}
.y133{bottom:700.253333pt;}
.y98{bottom:701.053333pt;}
.y152{bottom:707.933333pt;}
.y65{bottom:708.093333pt;}
.y10d{bottom:715.933333pt;}
.y132{bottom:716.093333pt;}
.y97{bottom:716.893333pt;}
.yc{bottom:723.613333pt;}
.y151{bottom:723.773333pt;}
.y64{bottom:723.933333pt;}
.y1ae{bottom:724.093333pt;}
.y35{bottom:729.213333pt;}
.y10c{bottom:731.773333pt;}
.y131{bottom:731.933333pt;}
.y96{bottom:732.733333pt;}
.y150{bottom:739.613333pt;}
.y118{bottom:739.773333pt;}
.y1ad{bottom:739.933333pt;}
.y10b{bottom:747.613333pt;}
.y63{bottom:747.773333pt;}
.y95{bottom:748.573333pt;}
.y117{bottom:755.613333pt;}
.y1ac{bottom:755.773333pt;}
.y10a{bottom:763.453333pt;}
.y62{bottom:763.613333pt;}
.y94{bottom:764.413333pt;}
.y116{bottom:771.453333pt;}
.y1ab{bottom:771.613333pt;}
.y33{bottom:778.813333pt;}
.y61{bottom:779.453333pt;}
.y115{bottom:787.453333pt;}
.y93{bottom:788.413333pt;}
.y109{bottom:795.293333pt;}
.y60{bottom:795.453333pt;}
.y114{bottom:803.333333pt;}
.y1aa{bottom:803.493333pt;}
.y92{bottom:804.293333pt;}
.y108{bottom:811.173333pt;}
.y5f{bottom:811.333333pt;}
.y176{bottom:819.173333pt;}
.y1a9{bottom:819.333333pt;}
.y91{bottom:820.133333pt;}
.y107{bottom:827.013333pt;}
.y5e{bottom:827.173333pt;}
.yb{bottom:830.533333pt;}
.y1d9{bottom:835.013333pt;}
.y1a8{bottom:835.173333pt;}
.y90{bottom:835.973333pt;}
.y31{bottom:836.613333pt;}
.y106{bottom:842.853333pt;}
.y5d{bottom:843.013333pt;}
.y4e{bottom:849.600000pt;}
.y1d8{bottom:850.853333pt;}
.y1a7{bottom:851.013333pt;}
.y8f{bottom:851.813333pt;}
.y5c{bottom:858.853333pt;}
.y14f{bottom:866.853333pt;}
.y8e{bottom:867.653333pt;}
.y105{bottom:874.693333pt;}
.y5b{bottom:874.853333pt;}
.y4d{bottom:879.333333pt;}
.y14e{bottom:882.693333pt;}
.y1a6{bottom:882.853333pt;}
.y8d{bottom:883.653333pt;}
.y104{bottom:890.533333pt;}
.y5a{bottom:890.693333pt;}
.y14d{bottom:898.533333pt;}
.y1a5{bottom:898.693333pt;}
.y8c{bottom:899.493333pt;}
.y4c{bottom:902.693333pt;}
.y103{bottom:906.373333pt;}
.y59{bottom:906.533333pt;}
.y14c{bottom:914.373333pt;}
.y1a4{bottom:914.533333pt;}
.y8b{bottom:917.413333pt;}
.y58{bottom:922.373333pt;}
.ybe{bottom:923.813333pt;}
.y4b{bottom:926.053333pt;}
.y102{bottom:930.213333pt;}
.y1a3{bottom:930.373333pt;}
.y57{bottom:938.213333pt;}
.y101{bottom:946.053333pt;}
.y8a{bottom:946.213333pt;}
.y4a{bottom:949.573333pt;}
.y130{bottom:954.053333pt;}
.y56{bottom:962.053333pt;}
.y100{bottom:970.053333pt;}
.y14b{bottom:977.893333pt;}
.y55{bottom:978.053333pt;}
.ya{bottom:984.453333pt;}
.yff{bottom:985.893333pt;}
.y54{bottom:993.893333pt;}
.yfe{bottom:1001.733333pt;}
.y53{bottom:1009.733333pt;}
.ybb{bottom:1012.293333pt;}
.y18f{bottom:1017.600000pt;}
.y52{bottom:1025.600000pt;}
.y2f{bottom:1038.080000pt;}
.y51{bottom:1041.440000pt;}
.y50{bottom:1057.280000pt;}
.y1{bottom:1062.560000pt;}
.y5{bottom:1080.000000pt;}
.y3{bottom:1088.000000pt;}
.h2{height:15.680000pt;}
.hd{height:18.400000pt;}
.h4{height:19.520000pt;}
.h26{height:23.840000pt;}
.h15{height:25.600000pt;}
.h3{height:30.254687pt;}
.h14{height:32.000000pt;}
.h5{height:32.060937pt;}
.hb{height:33.515625pt;}
.h8{height:33.867188pt;}
.h21{height:34.945312pt;}
.h1d{height:36.164062pt;}
.h1a{height:37.090625pt;}
.h19{height:37.479688pt;}
.h12{height:39.360000pt;}
.h7{height:39.562500pt;}
.h1e{height:39.712000pt;}
.h20{height:40.453125pt;}
.h6{height:41.112500pt;}
.h1c{height:41.343750pt;}
.h16{height:41.543750pt;}
.h18{height:43.782500pt;}
.h13{height:44.361250pt;}
.h2b{height:44.687500pt;}
.h10{height:46.592000pt;}
.ha{height:47.742188pt;}
.hc{height:48.768750pt;}
.h9{height:49.622500pt;}
.h11{height:52.832812pt;}
.he{height:58.270625pt;}
.h29{height:59.552000pt;}
.h27{height:59.680000pt;}
.h25{height:71.552000pt;}
.h28{height:75.360000pt;}
.h2a{height:75.520000pt;}
.h24{height:87.360000pt;}
.h1f{height:87.840000pt;}
.h23{height:115.072000pt;}
.h1b{height:117.760000pt;}
.hf{height:142.720000pt;}
.h22{height:226.106667pt;}
.h17{height:236.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:75.840000pt;}
.wb{width:79.872000pt;}
.wf{width:108.992000pt;}
.wd{width:128.640000pt;}
.w11{width:131.392000pt;}
.wc{width:156.026667pt;}
.w10{width:175.386667pt;}
.w12{width:274.426667pt;}
.we{width:311.586667pt;}
.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;}
.x1e{left:6.880000pt;}
.xe{left:9.600000pt;}
.xf{left:16.640000pt;}
.x22{left:18.586667pt;}
.x5{left:47.999988pt;}
.x28{left:50.880000pt;}
.x12{left:54.400000pt;}
.x1d{left:57.760000pt;}
.x13{left:63.999988pt;}
.x25{left:71.999988pt;}
.xd{left:82.400000pt;}
.x1{left:88.992000pt;}
.x26{left:96.031988pt;}
.x14{left:98.746667pt;}
.x1f{left:138.426667pt;}
.x6{left:143.706655pt;}
.xa{left:154.746655pt;}
.x1a{left:158.146667pt;}
.x29{left:160.506667pt;}
.x19{left:176.320000pt;}
.x27{left:186.746655pt;}
.x11{left:210.786667pt;}
.x17{left:228.346655pt;}
.x15{left:236.026655pt;}
.x1c{left:273.666655pt;}
.x10{left:278.626667pt;}
.x18{left:282.306655pt;}
.x20{left:295.106667pt;}
.x7{left:317.346655pt;}
.x16{left:318.786655pt;}
.x3{left:327.040000pt;}
.x2a{left:336.546667pt;}
.x1b{left:396.866655pt;}
.x4{left:409.093333pt;}
.xc{left:414.146655pt;}
.x21{left:424.546667pt;}
.x23{left:438.173322pt;}
.x2c{left:451.933322pt;}
.x24{left:462.173322pt;}
.x2b{left:468.573333pt;}
.x8{left:744.133322pt;}
.x9{left:746.053322pt;}
.xb{left:752.453322pt;}
}




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