
    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_7ace55a86df5dc67fa79c5b5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_92d33b5c350e2fc509fc0b94.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fbf0965c4cf230ab054bc924.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7a6f7a03f762bb4a4a7d7a0e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4a551acca612c1296db89f4b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_228a5e1684c3b379d6a4b59b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_d65938695301d85f22c8e087.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_508d700836be08ad8bd03611.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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;}
.ls16{letter-spacing:-3.294000px;}
.ls26{letter-spacing:-1.800000px;}
.ls1a{letter-spacing:-1.548000px;}
.ls27{letter-spacing:-1.494000px;}
.ls15{letter-spacing:-1.182000px;}
.ls13{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.666000px;}
.ls28{letter-spacing:-0.612000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls24{letter-spacing:0.153600px;}
.ls12{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.460200px;}
.ls14{letter-spacing:0.513600px;}
.ls22{letter-spacing:0.612000px;}
.ls8{letter-spacing:0.666000px;}
.lsd{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.182000px;}
.ls9{letter-spacing:1.620000px;}
.ls1b{letter-spacing:3.060000px;}
.lsc{letter-spacing:8.100000px;}
.ls19{letter-spacing:9.540000px;}
.ls1c{letter-spacing:11.466720px;}
.ls25{letter-spacing:12.420000px;}
.ls11{letter-spacing:41.706720px;}
.ls10{letter-spacing:44.586720px;}
.lse{letter-spacing:46.026720px;}
.lsf{letter-spacing:47.466720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-59.760000px;}
.ws0{word-spacing:-24.300000px;}
.ws2{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.122000px;}
.ws3{word-spacing:-16.020000px;}
.ws5{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.606000px;}
.ws17{word-spacing:-15.552000px;}
.ws18{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.093600px;}
.wsb{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.328000px;}
.ws15{word-spacing:-14.274000px;}
.ws14{word-spacing:-14.166000px;}
.wsd{word-spacing:-13.860000px;}
.wse{word-spacing:-13.758000px;}
.ws1b{word-spacing:-13.446000px;}
.ws11{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.140000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2912.842080px;}
._2{margin-left:-1384.050240px;}
._4{margin-left:-1021.210560px;}
._3{margin-left:-938.211840px;}
._5{margin-left:-510.920640px;}
._1d{margin-left:-14.074560px;}
._2b{margin-left:-7.025520px;}
._6{margin-left:-5.950080px;}
._7{margin-left:-3.433440px;}
._1c{margin-left:-2.394000px;}
._0{margin-left:-1.347840px;}
._a{width:1.317600px;}
._d{width:2.339280px;}
._e{width:3.468480px;}
._11{width:5.373120px;}
._17{width:6.378480px;}
._12{width:7.415520px;}
._8{width:9.273600px;}
._9{width:10.342080px;}
._c{width:11.907120px;}
._10{width:13.270320px;}
._18{width:16.190400px;}
._15{width:17.346480px;}
._14{width:18.629040px;}
._13{width:20.079360px;}
._f{width:21.513600px;}
._16{width:23.290560px;}
._19{width:24.723600px;}
._b{width:26.663520px;}
._22{width:27.909360px;}
._2a{width:30.552240px;}
._1a{width:33.286080px;}
._23{width:36.199920px;}
._1b{width:38.617200px;}
._2c{width:41.612160px;}
._1f{width:47.806560px;}
._1e{width:51.963840px;}
._24{width:59.914560px;}
._27{width:65.864640px;}
._26{width:66.871440px;}
._28{width:69.318720px;}
._29{width:70.397280px;}
._25{width:73.044000px;}
._21{width:129.681360px;}
._20{width:174.589440px;}
.fc2{color:rgb(4,98,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:3.240000px;}
.yd8{bottom:3.255000px;}
.yce{bottom:3.405000px;}
.ye9{bottom:3.420000px;}
.yec{bottom:3.600000px;}
.yd0{bottom:3.765000px;}
.ydf{bottom:3.780000px;}
.ydd{bottom:3.795000px;}
.yf0{bottom:4.140000px;}
.y185{bottom:4.500000px;}
.y131{bottom:5.040000px;}
.y176{bottom:5.205000px;}
.y16e{bottom:5.220000px;}
.y132{bottom:5.400000px;}
.y144{bottom:6.300000px;}
.y172{bottom:6.480000px;}
.y3d{bottom:6.495000px;}
.ye{bottom:6.660000px;}
.y159{bottom:6.840000px;}
.y16c{bottom:7.020000px;}
.y170{bottom:8.280000px;}
.y15c{bottom:11.340000px;}
.y28{bottom:12.075000px;}
.y157{bottom:12.420000px;}
.y147{bottom:12.600000px;}
.y10f{bottom:20.505000px;}
.yd6{bottom:20.520000px;}
.ye8{bottom:20.700000px;}
.ydb{bottom:20.880000px;}
.ye1{bottom:21.060000px;}
.y3c{bottom:28.275000px;}
.y27{bottom:29.355000px;}
.y3b{bottom:50.055000px;}
.y51{bottom:54.000000px;}
.y25{bottom:57.960000px;}
.y6{bottom:60.300000px;}
.y50{bottom:61.380000px;}
.y3a{bottom:72.015000px;}
.y24{bottom:77.760000px;}
.y4d{bottom:81.936000px;}
.y1b2{bottom:84.456000px;}
.y86{bottom:88.956000px;}
.y180{bottom:91.476000px;}
.y142{bottom:93.096000px;}
.y39{bottom:93.795000px;}
.yd3{bottom:97.236000px;}
.y23{bottom:97.560000px;}
.y10b{bottom:98.676000px;}
.y118{bottom:99.576000px;}
.ya0{bottom:101.556000px;}
.y4c{bottom:101.736000px;}
.y1b1{bottom:104.256000px;}
.y85{bottom:108.756000px;}
.y17f{bottom:111.276000px;}
.y141{bottom:112.896000px;}
.y38{bottom:115.575000px;}
.yd2{bottom:117.216000px;}
.y22{bottom:117.360000px;}
.y10a{bottom:118.476000px;}
.y117{bottom:119.376000px;}
.y9f{bottom:121.356000px;}
.y4b{bottom:121.716000px;}
.y1b0{bottom:123.876000px;}
.y84{bottom:128.556000px;}
.y17e{bottom:131.256000px;}
.y140{bottom:132.696000px;}
.yd1{bottom:136.656000px;}
.y21{bottom:137.340000px;}
.y37{bottom:137.355000px;}
.y109{bottom:138.276000px;}
.y116{bottom:139.176000px;}
.y9e{bottom:141.156000px;}
.y4a{bottom:141.516000px;}
.y1af{bottom:144.036000px;}
.y83{bottom:148.356000px;}
.y17d{bottom:151.050000px;}
.ycf{bottom:151.425000px;}
.y13f{bottom:152.670000px;}
.y20{bottom:157.140000px;}
.y108{bottom:158.070000px;}
.y115{bottom:158.970000px;}
.y36{bottom:159.135000px;}
.y9d{bottom:160.770000px;}
.y49{bottom:161.310000px;}
.y1ae{bottom:163.830000px;}
.y82{bottom:168.150000px;}
.ycd{bottom:169.425000px;}
.y17c{bottom:170.850000px;}
.y13e{bottom:172.470000px;}
.y1f{bottom:176.940000px;}
.y107{bottom:178.050000px;}
.y114{bottom:178.950000px;}
.y35{bottom:181.095000px;}
.y48{bottom:181.110000px;}
.y1ad{bottom:183.630000px;}
.y81{bottom:188.130000px;}
.y9c{bottom:189.930000px;}
.y17b{bottom:190.650000px;}
.y13d{bottom:192.270000px;}
.ycc{bottom:193.170000px;}
.y1e{bottom:196.740000px;}
.y106{bottom:197.850000px;}
.y113{bottom:198.390000px;}
.y47{bottom:200.910000px;}
.y34{bottom:202.875000px;}
.y1ac{bottom:203.430000px;}
.y80{bottom:207.930000px;}
.y9b{bottom:209.730000px;}
.y17a{bottom:210.450000px;}
.y13c{bottom:212.070000px;}
.ycb{bottom:212.970000px;}
.y112{bottom:213.165000px;}
.y1d{bottom:216.570000px;}
.y105{bottom:217.650000px;}
.y46{bottom:220.890000px;}
.y1ab{bottom:223.410000px;}
.y33{bottom:224.685000px;}
.y7f{bottom:227.730000px;}
.y9a{bottom:229.530000px;}
.y179{bottom:230.430000px;}
.y111{bottom:230.445000px;}
.y13b{bottom:231.870000px;}
.yca{bottom:232.950000px;}
.y1c{bottom:236.550000px;}
.y104{bottom:237.450000px;}
.y45{bottom:240.690000px;}
.y1aa{bottom:243.210000px;}
.y32{bottom:246.465000px;}
.y7e{bottom:247.530000px;}
.y110{bottom:247.725000px;}
.y99{bottom:249.330000px;}
.y178{bottom:250.230000px;}
.y13a{bottom:251.850000px;}
.yc9{bottom:252.750000px;}
.y1b{bottom:256.350000px;}
.y103{bottom:257.250000px;}
.y44{bottom:260.490000px;}
.y1a9{bottom:263.010000px;}
.y10e{bottom:265.725000px;}
.y7d{bottom:267.330000px;}
.y31{bottom:268.425000px;}
.y98{bottom:268.950000px;}
.y177{bottom:269.670000px;}
.y139{bottom:271.650000px;}
.yc8{bottom:272.910000px;}
.y1a{bottom:276.150000px;}
.y102{bottom:277.230000px;}
.y43{bottom:280.290000px;}
.y1a8{bottom:282.810000px;}
.y175{bottom:284.445000px;}
.y7c{bottom:287.310000px;}
.y30{bottom:290.205000px;}
.y138{bottom:291.450000px;}
.yc7{bottom:292.710000px;}
.y19{bottom:295.950000px;}
.y101{bottom:297.030000px;}
.y97{bottom:298.110000px;}
.y42{bottom:300.090000px;}
.y1a7{bottom:302.250000px;}
.y174{bottom:303.525000px;}
.y10d{bottom:306.750000px;}
.y7b{bottom:307.110000px;}
.y137{bottom:311.250000px;}
.y2f{bottom:311.985000px;}
.yc6{bottom:312.510000px;}
.y18{bottom:315.750000px;}
.y100{bottom:316.830000px;}
.y96{bottom:317.910000px;}
.y41{bottom:320.070000px;}
.y173{bottom:320.805000px;}
.y1a6{bottom:322.590000px;}
.y10c{bottom:326.550000px;}
.y7a{bottom:326.910000px;}
.y136{bottom:331.050000px;}
.yc5{bottom:332.310000px;}
.y2e{bottom:333.765000px;}
.y17{bottom:335.730000px;}
.yff{bottom:336.675000px;}
.y95{bottom:337.755000px;}
.y171{bottom:338.115000px;}
.y40{bottom:339.915000px;}
.y1a5{bottom:342.435000px;}
.y79{bottom:346.755000px;}
.y135{bottom:351.075000px;}
.yc4{bottom:352.335000px;}
.y16{bottom:355.530000px;}
.y2d{bottom:355.545000px;}
.yfe{bottom:356.475000px;}
.y94{bottom:357.555000px;}
.y16f{bottom:358.455000px;}
.y3f{bottom:359.355000px;}
.y1a4{bottom:362.235000px;}
.y78{bottom:366.555000px;}
.y134{bottom:370.515000px;}
.yc3{bottom:371.775000px;}
.y15{bottom:375.330000px;}
.yfd{bottom:376.455000px;}
.y93{bottom:376.995000px;}
.y3e{bottom:379.515000px;}
.y16d{bottom:380.595000px;}
.y1a3{bottom:382.035000px;}
.y77{bottom:386.355000px;}
.y133{bottom:390.315000px;}
.y2c{bottom:392.445000px;}
.y14{bottom:395.130000px;}
.y26{bottom:395.520000px;}
.yf{bottom:395.535000px;}
.yfc{bottom:396.255000px;}
.y92{bottom:397.335000px;}
.y16b{bottom:400.395000px;}
.yc2{bottom:400.935000px;}
.y1a2{bottom:401.835000px;}
.y130{bottom:405.075000px;}
.y76{bottom:406.335000px;}
.y13{bottom:414.930000px;}
.yfb{bottom:416.055000px;}
.y91{bottom:417.135000px;}
.yc1{bottom:420.735000px;}
.y1a1{bottom:421.815000px;}
.y12f{bottom:423.975000px;}
.y75{bottom:426.135000px;}
.y16a{bottom:427.935000px;}
.y2b{bottom:429.345000px;}
.y12{bottom:434.910000px;}
.yfa{bottom:435.855000px;}
.y90{bottom:436.935000px;}
.yc0{bottom:440.535000px;}
.y12e{bottom:441.255000px;}
.y1a0{bottom:441.615000px;}
.y74{bottom:445.935000px;}
.y169{bottom:448.095000px;}
.y2a{bottom:451.125000px;}
.y11{bottom:454.710000px;}
.yf9{bottom:455.655000px;}
.y8f{bottom:456.735000px;}
.y12d{bottom:458.535000px;}
.ybf{bottom:460.515000px;}
.y19f{bottom:461.415000px;}
.y73{bottom:465.735000px;}
.y168{bottom:467.895000px;}
.y29{bottom:472.890000px;}
.y10{bottom:474.510000px;}
.yf8{bottom:475.635000px;}
.y8e{bottom:476.535000px;}
.ybe{bottom:479.955000px;}
.y19e{bottom:481.215000px;}
.y72{bottom:485.535000px;}
.y167{bottom:487.695000px;}
.yf7{bottom:495.435000px;}
.y8d{bottom:496.515000px;}
.ybd{bottom:500.115000px;}
.y19d{bottom:501.015000px;}
.y71{bottom:505.515000px;}
.y166{bottom:507.495000px;}
.yf6{bottom:515.235000px;}
.y8c{bottom:516.315000px;}
.y12c{bottom:517.575000px;}
.ybc{bottom:519.915000px;}
.y19c{bottom:520.995000px;}
.y70{bottom:525.315000px;}
.y165{bottom:527.295000px;}
.yf5{bottom:535.035000px;}
.y8b{bottom:536.115000px;}
.y12b{bottom:537.735000px;}
.ybb{bottom:539.715000px;}
.y19b{bottom:540.795000px;}
.y6f{bottom:545.115000px;}
.y164{bottom:547.275000px;}
.yf4{bottom:554.835000px;}
.y8a{bottom:555.915000px;}
.y12a{bottom:557.535000px;}
.yba{bottom:559.335000px;}
.y19a{bottom:560.235000px;}
.y6e{bottom:564.915000px;}
.y163{bottom:567.075000px;}
.yf3{bottom:574.815000px;}
.y89{bottom:575.715000px;}
.y129{bottom:577.335000px;}
.y199{bottom:580.035000px;}
.y6d{bottom:584.715000px;}
.y162{bottom:586.875000px;}
.yb9{bottom:588.495000px;}
.yf2{bottom:594.255000px;}
.y198{bottom:594.795000px;}
.y88{bottom:595.335000px;}
.y128{bottom:597.315000px;}
.y6c{bottom:604.725000px;}
.y161{bottom:606.705000px;}
.yb8{bottom:608.325000px;}
.yf1{bottom:609.045000px;}
.y197{bottom:612.105000px;}
.y127{bottom:617.145000px;}
.y6b{bottom:624.525000px;}
.yef{bottom:626.325000px;}
.y160{bottom:626.505000px;}
.yb7{bottom:628.125000px;}
.y196{bottom:629.385000px;}
.y126{bottom:636.945000px;}
.yee{bottom:643.965000px;}
.y6a{bottom:644.325000px;}
.y15f{bottom:646.485000px;}
.y195{bottom:647.385000px;}
.yb6{bottom:647.925000px;}
.y125{bottom:656.745000px;}
.yed{bottom:661.245000px;}
.y69{bottom:664.125000px;}
.y15e{bottom:666.285000px;}
.yb5{bottom:667.905000px;}
.y194{bottom:671.145000px;}
.y124{bottom:676.545000px;}
.yeb{bottom:679.245000px;}
.y68{bottom:683.925000px;}
.y15d{bottom:685.725000px;}
.yb4{bottom:687.345000px;}
.y193{bottom:691.305000px;}
.y123{bottom:696.525000px;}
.y15b{bottom:700.485000px;}
.y67{bottom:703.905000px;}
.y192{bottom:711.285000px;}
.yea{bottom:713.625000px;}
.y122{bottom:716.325000px;}
.yb3{bottom:716.505000px;}
.y66{bottom:723.705000px;}
.y15a{bottom:725.325000px;}
.ye7{bottom:730.905000px;}
.y191{bottom:731.085000px;}
.y121{bottom:736.125000px;}
.yb2{bottom:736.305000px;}
.y158{bottom:742.605000px;}
.y65{bottom:743.505000px;}
.y190{bottom:750.885000px;}
.y120{bottom:755.925000px;}
.yb1{bottom:756.105000px;}
.y64{bottom:763.305000px;}
.y156{bottom:763.665000px;}
.y18f{bottom:770.685000px;}
.ye6{bottom:772.305000px;}
.y11f{bottom:775.725000px;}
.yb0{bottom:776.085000px;}
.y63{bottom:783.105000px;}
.ye5{bottom:786.705000px;}
.y18e{bottom:790.485000px;}
.yaf{bottom:795.525000px;}
.y11e{bottom:795.705000px;}
.y155{bottom:796.425000px;}
.y62{bottom:803.085000px;}
.ye4{bottom:804.000000px;}
.y18d{bottom:810.285000px;}
.yae{bottom:815.325000px;}
.y11d{bottom:815.505000px;}
.y154{bottom:816.585000px;}
.ye3{bottom:821.280000px;}
.y61{bottom:822.885000px;}
.y18c{bottom:830.265000px;}
.y11c{bottom:835.305000px;}
.y153{bottom:836.565000px;}
.ye2{bottom:838.545000px;}
.y60{bottom:842.685000px;}
.yad{bottom:844.485000px;}
.y18b{bottom:850.065000px;}
.y11b{bottom:854.745000px;}
.y152{bottom:856.365000px;}
.y5f{bottom:862.485000px;}
.yac{bottom:864.285000px;}
.y11a{bottom:868.965000px;}
.y18a{bottom:869.865000px;}
.ye0{bottom:872.970000px;}
.y151{bottom:876.210000px;}
.y5e{bottom:882.330000px;}
.yab{bottom:884.310000px;}
.yd{bottom:885.930000px;}
.y189{bottom:889.710000px;}
.y150{bottom:896.010000px;}
.y5d{bottom:902.310000px;}
.yaa{bottom:904.110000px;}
.yde{bottom:907.530000px;}
.y188{bottom:909.150000px;}
.y14f{bottom:915.810000px;}
.yc{bottom:916.170000px;}
.y5c{bottom:922.110000px;}
.ya9{bottom:923.910000px;}
.ydc{bottom:924.795000px;}
.yda{bottom:924.810000px;}
.y187{bottom:929.130000px;}
.y14e{bottom:935.790000px;}
.yb{bottom:936.150000px;}
.y5b{bottom:941.910000px;}
.ya8{bottom:943.710000px;}
.y186{bottom:943.890000px;}
.y14d{bottom:955.590000px;}
.ya{bottom:956.310000px;}
.yd7{bottom:960.075000px;}
.yd5{bottom:960.090000px;}
.y184{bottom:961.170000px;}
.y5a{bottom:961.710000px;}
.ya7{bottom:963.510000px;}
.y14c{bottom:975.390000px;}
.y9{bottom:977.730000px;}
.y183{bottom:979.170000px;}
.y59{bottom:981.510000px;}
.ya6{bottom:983.490000px;}
.y14b{bottom:995.190000px;}
.y182{bottom:997.170000px;}
.y8{bottom:1000.770000px;}
.yd4{bottom:1001.130000px;}
.y58{bottom:1001.490000px;}
.ya5{bottom:1002.930000px;}
.y14a{bottom:1014.990000px;}
.y119{bottom:1020.930000px;}
.y57{bottom:1021.290000px;}
.ya4{bottom:1032.090000px;}
.y7{bottom:1032.630000px;}
.y149{bottom:1034.610000px;}
.y181{bottom:1040.730000px;}
.y56{bottom:1041.090000px;}
.ya3{bottom:1051.890000px;}
.y148{bottom:1054.410000px;}
.y55{bottom:1060.890000px;}
.y146{bottom:1069.170000px;}
.y5{bottom:1071.510000px;}
.ya2{bottom:1071.690000px;}
.y1b3{bottom:1080.330000px;}
.y54{bottom:1080.690000px;}
.ya1{bottom:1091.310000px;}
.y145{bottom:1095.270000px;}
.y4{bottom:1100.670000px;}
.y143{bottom:1113.270000px;}
.y53{bottom:1120.470000px;}
.y3{bottom:1129.830000px;}
.y87{bottom:1139.940000px;}
.y52{bottom:1140.300000px;}
.y2{bottom:1159.200000px;}
.y4f{bottom:1171.800000px;}
.y1{bottom:1189.440000px;}
.y4e{bottom:1193.580000px;}
.h1b{height:17.085000px;}
.h17{height:17.100000px;}
.he{height:17.265000px;}
.h14{height:17.280000px;}
.h25{height:17.301000px;}
.h27{height:17.310000px;}
.h18{height:17.640000px;}
.h26{height:17.985000px;}
.h19{height:18.885000px;}
.h22{height:19.065000px;}
.h1a{height:20.145000px;}
.h24{height:20.325000px;}
.h1e{height:20.340000px;}
.h21{height:20.865000px;}
.h7{height:21.945000px;}
.h23{height:22.125000px;}
.h1f{height:24.840000px;}
.h1c{height:26.085000px;}
.h1d{height:26.280000px;}
.h11{height:34.365000px;}
.hf{height:34.371000px;}
.h10{height:34.380000px;}
.h13{height:34.402500px;}
.h12{height:34.545000px;}
.h15{height:34.555500px;}
.h16{height:34.560000px;}
.h9{height:43.215117px;}
.h6{height:58.651172px;}
.h20{height:59.614102px;}
.hb{height:60.226875px;}
.hc{height:61.423863px;}
.hd{height:62.211094px;}
.h3{height:65.010937px;}
.h4{height:66.757500px;}
.h2{height:84.898125px;}
.h5{height:96.508125px;}
.h8{height:488.220000px;}
.ha{height:488.235000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:37.431000px;}
.w21{width:46.605000px;}
.w1d{width:52.185000px;}
.w2f{width:64.476000px;}
.w31{width:66.081000px;}
.w8{width:67.320000px;}
.w25{width:68.076000px;}
.w27{width:68.961000px;}
.w20{width:70.005000px;}
.w1c{width:72.171000px;}
.w35{width:81.345000px;}
.w28{width:89.445000px;}
.w32{width:91.065000px;}
.w1a{width:93.225000px;}
.w6{width:97.371000px;}
.w13{width:98.271000px;}
.w7{width:108.201000px;}
.wf{width:109.065000px;}
.w14{width:109.101000px;}
.w18{width:109.800000px;}
.w1e{width:119.181000px;}
.w16{width:127.965000px;}
.w2c{width:128.865000px;}
.w2b{width:129.441000px;}
.w26{width:131.925000px;}
.we{width:135.561000px;}
.w12{width:135.741000px;}
.w1b{width:136.281000px;}
.w9{width:136.836000px;}
.w30{width:137.145000px;}
.w19{width:139.536000px;}
.w11{width:142.776000px;}
.wd{width:142.956000px;}
.wc{width:146.880000px;}
.w1f{width:155.730000px;}
.w23{width:157.851000px;}
.w2d{width:159.831000px;}
.w22{width:162.195000px;}
.w3{width:169.950000px;}
.w4{width:169.965000px;}
.w24{width:178.575000px;}
.w2e{width:179.835000px;}
.w17{width:196.761000px;}
.w2a{width:199.830000px;}
.w34{width:208.470000px;}
.w29{width:230.421000px;}
.w10{width:238.575000px;}
.wb{width:239.115000px;}
.w15{width:242.670000px;}
.wa{width:255.075000px;}
.w33{width:279.381000px;}
.w2{width:625.635000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x2{left:48.780000px;}
.x1{left:54.180000px;}
.xc{left:59.760000px;}
.x5{left:81.000000px;}
.x48{left:86.040000px;}
.x11{left:89.685000px;}
.x6{left:95.445000px;}
.x2d{left:97.245000px;}
.x23{left:99.225000px;}
.x29{left:102.285000px;}
.x1c{left:107.505000px;}
.x17{left:108.765000px;}
.x7{left:132.885000px;}
.x1d{left:179.685000px;}
.x12{left:187.965000px;}
.x34{left:195.510000px;}
.x35{left:206.130000px;}
.x36{left:217.830000px;}
.x37{left:228.630000px;}
.x8{left:230.265000px;}
.x1e{left:231.885000px;}
.x24{left:257.085000px;}
.x38{left:268.770000px;}
.x13{left:297.075000px;}
.xd{left:298.875000px;}
.x18{left:305.535000px;}
.x2a{left:332.715000px;}
.x9{left:338.475000px;}
.x39{left:349.095000px;}
.x1f{left:351.075000px;}
.x31{left:376.635000px;}
.x3a{left:379.875000px;}
.x3b{left:390.675000px;}
.xa{left:405.795000px;}
.x19{left:415.335000px;}
.x25{left:435.675000px;}
.x2e{left:437.115000px;}
.xe{left:445.755000px;}
.x3c{left:451.335000px;}
.x3d{left:461.955000px;}
.x2f{left:501.600000px;}
.x26{left:503.580000px;}
.x20{left:506.820000px;}
.x3e{left:512.025000px;}
.x2b{left:532.560000px;}
.x14{left:539.760000px;}
.xb{left:542.640000px;}
.x1a{left:554.880000px;}
.x3f{left:573.045000px;}
.x21{left:576.840000px;}
.x40{left:584.025000px;}
.x32{left:585.120000px;}
.xf{left:588.720000px;}
.x41{left:617.145000px;}
.x22{left:623.460000px;}
.x42{left:627.945000px;}
.x27{left:635.520000px;}
.x30{left:638.760000px;}
.x1b{left:648.120000px;}
.x2c{left:662.010000px;}
.x43{left:672.990000px;}
.x4{left:674.430000px;}
.x15{left:675.510000px;}
.x28{left:704.490000px;}
.x33{left:714.570000px;}
.x10{left:724.290000px;}
.x44{left:731.670000px;}
.x45{left:742.470000px;}
.x46{left:765.150000px;}
.x47{left:775.950000px;}
.x16{left:802.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-2.928000pt;}
.ls26{letter-spacing:-1.600000pt;}
.ls1a{letter-spacing:-1.376000pt;}
.ls27{letter-spacing:-1.328000pt;}
.ls15{letter-spacing:-1.050667pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.592000pt;}
.ls28{letter-spacing:-0.544000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls24{letter-spacing:0.136533pt;}
.ls12{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.409067pt;}
.ls14{letter-spacing:0.456533pt;}
.ls22{letter-spacing:0.544000pt;}
.ls8{letter-spacing:0.592000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls2{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.050667pt;}
.ls9{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:2.720000pt;}
.lsc{letter-spacing:7.200000pt;}
.ls19{letter-spacing:8.480000pt;}
.ls1c{letter-spacing:10.192640pt;}
.ls25{letter-spacing:11.040000pt;}
.ls11{letter-spacing:37.072640pt;}
.ls10{letter-spacing:39.632640pt;}
.lse{letter-spacing:40.912640pt;}
.lsf{letter-spacing:42.192640pt;}
.ws13{word-spacing:-53.120000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.330667pt;}
.ws3{word-spacing:-14.240000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws10{word-spacing:-13.872000pt;}
.ws17{word-spacing:-13.824000pt;}
.ws18{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.185067pt;}
.ws16{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.736000pt;}
.ws15{word-spacing:-12.688000pt;}
.ws14{word-spacing:-12.592000pt;}
.wsd{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.229333pt;}
.ws1b{word-spacing:-11.952000pt;}
.ws11{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.680000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-2589.192960pt;}
._2{margin-left:-1230.266880pt;}
._4{margin-left:-907.742720pt;}
._3{margin-left:-833.966080pt;}
._5{margin-left:-454.151680pt;}
._1d{margin-left:-12.510720pt;}
._2b{margin-left:-6.244907pt;}
._6{margin-left:-5.288960pt;}
._7{margin-left:-3.051947pt;}
._1c{margin-left:-2.128000pt;}
._0{margin-left:-1.198080pt;}
._a{width:1.171200pt;}
._d{width:2.079360pt;}
._e{width:3.083093pt;}
._11{width:4.776107pt;}
._17{width:5.669760pt;}
._12{width:6.591573pt;}
._8{width:8.243200pt;}
._9{width:9.192960pt;}
._c{width:10.584107pt;}
._10{width:11.795840pt;}
._18{width:14.391467pt;}
._15{width:15.419093pt;}
._14{width:16.559147pt;}
._13{width:17.848320pt;}
._f{width:19.123200pt;}
._16{width:20.702720pt;}
._19{width:21.976533pt;}
._b{width:23.700907pt;}
._22{width:24.808320pt;}
._2a{width:27.157547pt;}
._1a{width:29.587627pt;}
._23{width:32.177707pt;}
._1b{width:34.326400pt;}
._2c{width:36.988587pt;}
._1f{width:42.494720pt;}
._1e{width:46.190080pt;}
._24{width:53.257387pt;}
._27{width:58.546347pt;}
._26{width:59.441280pt;}
._28{width:61.616640pt;}
._29{width:62.575360pt;}
._25{width:64.928000pt;}
._21{width:115.272320pt;}
._20{width:155.190613pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:2.880000pt;}
.yd8{bottom:2.893333pt;}
.yce{bottom:3.026667pt;}
.ye9{bottom:3.040000pt;}
.yec{bottom:3.200000pt;}
.yd0{bottom:3.346667pt;}
.ydf{bottom:3.360000pt;}
.ydd{bottom:3.373333pt;}
.yf0{bottom:3.680000pt;}
.y185{bottom:4.000000pt;}
.y131{bottom:4.480000pt;}
.y176{bottom:4.626667pt;}
.y16e{bottom:4.640000pt;}
.y132{bottom:4.800000pt;}
.y144{bottom:5.600000pt;}
.y172{bottom:5.760000pt;}
.y3d{bottom:5.773333pt;}
.ye{bottom:5.920000pt;}
.y159{bottom:6.080000pt;}
.y16c{bottom:6.240000pt;}
.y170{bottom:7.360000pt;}
.y15c{bottom:10.080000pt;}
.y28{bottom:10.733333pt;}
.y157{bottom:11.040000pt;}
.y147{bottom:11.200000pt;}
.y10f{bottom:18.226667pt;}
.yd6{bottom:18.240000pt;}
.ye8{bottom:18.400000pt;}
.ydb{bottom:18.560000pt;}
.ye1{bottom:18.720000pt;}
.y3c{bottom:25.133333pt;}
.y27{bottom:26.093333pt;}
.y3b{bottom:44.493333pt;}
.y51{bottom:48.000000pt;}
.y25{bottom:51.520000pt;}
.y6{bottom:53.600000pt;}
.y50{bottom:54.560000pt;}
.y3a{bottom:64.013333pt;}
.y24{bottom:69.120000pt;}
.y4d{bottom:72.832000pt;}
.y1b2{bottom:75.072000pt;}
.y86{bottom:79.072000pt;}
.y180{bottom:81.312000pt;}
.y142{bottom:82.752000pt;}
.y39{bottom:83.373333pt;}
.yd3{bottom:86.432000pt;}
.y23{bottom:86.720000pt;}
.y10b{bottom:87.712000pt;}
.y118{bottom:88.512000pt;}
.ya0{bottom:90.272000pt;}
.y4c{bottom:90.432000pt;}
.y1b1{bottom:92.672000pt;}
.y85{bottom:96.672000pt;}
.y17f{bottom:98.912000pt;}
.y141{bottom:100.352000pt;}
.y38{bottom:102.733333pt;}
.yd2{bottom:104.192000pt;}
.y22{bottom:104.320000pt;}
.y10a{bottom:105.312000pt;}
.y117{bottom:106.112000pt;}
.y9f{bottom:107.872000pt;}
.y4b{bottom:108.192000pt;}
.y1b0{bottom:110.112000pt;}
.y84{bottom:114.272000pt;}
.y17e{bottom:116.672000pt;}
.y140{bottom:117.952000pt;}
.yd1{bottom:121.472000pt;}
.y21{bottom:122.080000pt;}
.y37{bottom:122.093333pt;}
.y109{bottom:122.912000pt;}
.y116{bottom:123.712000pt;}
.y9e{bottom:125.472000pt;}
.y4a{bottom:125.792000pt;}
.y1af{bottom:128.032000pt;}
.y83{bottom:131.872000pt;}
.y17d{bottom:134.266667pt;}
.ycf{bottom:134.600000pt;}
.y13f{bottom:135.706667pt;}
.y20{bottom:139.680000pt;}
.y108{bottom:140.506667pt;}
.y115{bottom:141.306667pt;}
.y36{bottom:141.453333pt;}
.y9d{bottom:142.906667pt;}
.y49{bottom:143.386667pt;}
.y1ae{bottom:145.626667pt;}
.y82{bottom:149.466667pt;}
.ycd{bottom:150.600000pt;}
.y17c{bottom:151.866667pt;}
.y13e{bottom:153.306667pt;}
.y1f{bottom:157.280000pt;}
.y107{bottom:158.266667pt;}
.y114{bottom:159.066667pt;}
.y35{bottom:160.973333pt;}
.y48{bottom:160.986667pt;}
.y1ad{bottom:163.226667pt;}
.y81{bottom:167.226667pt;}
.y9c{bottom:168.826667pt;}
.y17b{bottom:169.466667pt;}
.y13d{bottom:170.906667pt;}
.ycc{bottom:171.706667pt;}
.y1e{bottom:174.880000pt;}
.y106{bottom:175.866667pt;}
.y113{bottom:176.346667pt;}
.y47{bottom:178.586667pt;}
.y34{bottom:180.333333pt;}
.y1ac{bottom:180.826667pt;}
.y80{bottom:184.826667pt;}
.y9b{bottom:186.426667pt;}
.y17a{bottom:187.066667pt;}
.y13c{bottom:188.506667pt;}
.ycb{bottom:189.306667pt;}
.y112{bottom:189.480000pt;}
.y1d{bottom:192.506667pt;}
.y105{bottom:193.466667pt;}
.y46{bottom:196.346667pt;}
.y1ab{bottom:198.586667pt;}
.y33{bottom:199.720000pt;}
.y7f{bottom:202.426667pt;}
.y9a{bottom:204.026667pt;}
.y179{bottom:204.826667pt;}
.y111{bottom:204.840000pt;}
.y13b{bottom:206.106667pt;}
.yca{bottom:207.066667pt;}
.y1c{bottom:210.266667pt;}
.y104{bottom:211.066667pt;}
.y45{bottom:213.946667pt;}
.y1aa{bottom:216.186667pt;}
.y32{bottom:219.080000pt;}
.y7e{bottom:220.026667pt;}
.y110{bottom:220.200000pt;}
.y99{bottom:221.626667pt;}
.y178{bottom:222.426667pt;}
.y13a{bottom:223.866667pt;}
.yc9{bottom:224.666667pt;}
.y1b{bottom:227.866667pt;}
.y103{bottom:228.666667pt;}
.y44{bottom:231.546667pt;}
.y1a9{bottom:233.786667pt;}
.y10e{bottom:236.200000pt;}
.y7d{bottom:237.626667pt;}
.y31{bottom:238.600000pt;}
.y98{bottom:239.066667pt;}
.y177{bottom:239.706667pt;}
.y139{bottom:241.466667pt;}
.yc8{bottom:242.586667pt;}
.y1a{bottom:245.466667pt;}
.y102{bottom:246.426667pt;}
.y43{bottom:249.146667pt;}
.y1a8{bottom:251.386667pt;}
.y175{bottom:252.840000pt;}
.y7c{bottom:255.386667pt;}
.y30{bottom:257.960000pt;}
.y138{bottom:259.066667pt;}
.yc7{bottom:260.186667pt;}
.y19{bottom:263.066667pt;}
.y101{bottom:264.026667pt;}
.y97{bottom:264.986667pt;}
.y42{bottom:266.746667pt;}
.y1a7{bottom:268.666667pt;}
.y174{bottom:269.800000pt;}
.y10d{bottom:272.666667pt;}
.y7b{bottom:272.986667pt;}
.y137{bottom:276.666667pt;}
.y2f{bottom:277.320000pt;}
.yc6{bottom:277.786667pt;}
.y18{bottom:280.666667pt;}
.y100{bottom:281.626667pt;}
.y96{bottom:282.586667pt;}
.y41{bottom:284.506667pt;}
.y173{bottom:285.160000pt;}
.y1a6{bottom:286.746667pt;}
.y10c{bottom:290.266667pt;}
.y7a{bottom:290.586667pt;}
.y136{bottom:294.266667pt;}
.yc5{bottom:295.386667pt;}
.y2e{bottom:296.680000pt;}
.y17{bottom:298.426667pt;}
.yff{bottom:299.266667pt;}
.y95{bottom:300.226667pt;}
.y171{bottom:300.546667pt;}
.y40{bottom:302.146667pt;}
.y1a5{bottom:304.386667pt;}
.y79{bottom:308.226667pt;}
.y135{bottom:312.066667pt;}
.yc4{bottom:313.186667pt;}
.y16{bottom:316.026667pt;}
.y2d{bottom:316.040000pt;}
.yfe{bottom:316.866667pt;}
.y94{bottom:317.826667pt;}
.y16f{bottom:318.626667pt;}
.y3f{bottom:319.426667pt;}
.y1a4{bottom:321.986667pt;}
.y78{bottom:325.826667pt;}
.y134{bottom:329.346667pt;}
.yc3{bottom:330.466667pt;}
.y15{bottom:333.626667pt;}
.yfd{bottom:334.626667pt;}
.y93{bottom:335.106667pt;}
.y3e{bottom:337.346667pt;}
.y16d{bottom:338.306667pt;}
.y1a3{bottom:339.586667pt;}
.y77{bottom:343.426667pt;}
.y133{bottom:346.946667pt;}
.y2c{bottom:348.840000pt;}
.y14{bottom:351.226667pt;}
.y26{bottom:351.573333pt;}
.yf{bottom:351.586667pt;}
.yfc{bottom:352.226667pt;}
.y92{bottom:353.186667pt;}
.y16b{bottom:355.906667pt;}
.yc2{bottom:356.386667pt;}
.y1a2{bottom:357.186667pt;}
.y130{bottom:360.066667pt;}
.y76{bottom:361.186667pt;}
.y13{bottom:368.826667pt;}
.yfb{bottom:369.826667pt;}
.y91{bottom:370.786667pt;}
.yc1{bottom:373.986667pt;}
.y1a1{bottom:374.946667pt;}
.y12f{bottom:376.866667pt;}
.y75{bottom:378.786667pt;}
.y16a{bottom:380.386667pt;}
.y2b{bottom:381.640000pt;}
.y12{bottom:386.586667pt;}
.yfa{bottom:387.426667pt;}
.y90{bottom:388.386667pt;}
.yc0{bottom:391.586667pt;}
.y12e{bottom:392.226667pt;}
.y1a0{bottom:392.546667pt;}
.y74{bottom:396.386667pt;}
.y169{bottom:398.306667pt;}
.y2a{bottom:401.000000pt;}
.y11{bottom:404.186667pt;}
.yf9{bottom:405.026667pt;}
.y8f{bottom:405.986667pt;}
.y12d{bottom:407.586667pt;}
.ybf{bottom:409.346667pt;}
.y19f{bottom:410.146667pt;}
.y73{bottom:413.986667pt;}
.y168{bottom:415.906667pt;}
.y29{bottom:420.346667pt;}
.y10{bottom:421.786667pt;}
.yf8{bottom:422.786667pt;}
.y8e{bottom:423.586667pt;}
.ybe{bottom:426.626667pt;}
.y19e{bottom:427.746667pt;}
.y72{bottom:431.586667pt;}
.y167{bottom:433.506667pt;}
.yf7{bottom:440.386667pt;}
.y8d{bottom:441.346667pt;}
.ybd{bottom:444.546667pt;}
.y19d{bottom:445.346667pt;}
.y71{bottom:449.346667pt;}
.y166{bottom:451.106667pt;}
.yf6{bottom:457.986667pt;}
.y8c{bottom:458.946667pt;}
.y12c{bottom:460.066667pt;}
.ybc{bottom:462.146667pt;}
.y19c{bottom:463.106667pt;}
.y70{bottom:466.946667pt;}
.y165{bottom:468.706667pt;}
.yf5{bottom:475.586667pt;}
.y8b{bottom:476.546667pt;}
.y12b{bottom:477.986667pt;}
.ybb{bottom:479.746667pt;}
.y19b{bottom:480.706667pt;}
.y6f{bottom:484.546667pt;}
.y164{bottom:486.466667pt;}
.yf4{bottom:493.186667pt;}
.y8a{bottom:494.146667pt;}
.y12a{bottom:495.586667pt;}
.yba{bottom:497.186667pt;}
.y19a{bottom:497.986667pt;}
.y6e{bottom:502.146667pt;}
.y163{bottom:504.066667pt;}
.yf3{bottom:510.946667pt;}
.y89{bottom:511.746667pt;}
.y129{bottom:513.186667pt;}
.y199{bottom:515.586667pt;}
.y6d{bottom:519.746667pt;}
.y162{bottom:521.666667pt;}
.yb9{bottom:523.106667pt;}
.yf2{bottom:528.226667pt;}
.y198{bottom:528.706667pt;}
.y88{bottom:529.186667pt;}
.y128{bottom:530.946667pt;}
.y6c{bottom:537.533333pt;}
.y161{bottom:539.293333pt;}
.yb8{bottom:540.733333pt;}
.yf1{bottom:541.373333pt;}
.y197{bottom:544.093333pt;}
.y127{bottom:548.573333pt;}
.y6b{bottom:555.133333pt;}
.yef{bottom:556.733333pt;}
.y160{bottom:556.893333pt;}
.yb7{bottom:558.333333pt;}
.y196{bottom:559.453333pt;}
.y126{bottom:566.173333pt;}
.yee{bottom:572.413333pt;}
.y6a{bottom:572.733333pt;}
.y15f{bottom:574.653333pt;}
.y195{bottom:575.453333pt;}
.yb6{bottom:575.933333pt;}
.y125{bottom:583.773333pt;}
.yed{bottom:587.773333pt;}
.y69{bottom:590.333333pt;}
.y15e{bottom:592.253333pt;}
.yb5{bottom:593.693333pt;}
.y194{bottom:596.573333pt;}
.y124{bottom:601.373333pt;}
.yeb{bottom:603.773333pt;}
.y68{bottom:607.933333pt;}
.y15d{bottom:609.533333pt;}
.yb4{bottom:610.973333pt;}
.y193{bottom:614.493333pt;}
.y123{bottom:619.133333pt;}
.y15b{bottom:622.653333pt;}
.y67{bottom:625.693333pt;}
.y192{bottom:632.253333pt;}
.yea{bottom:634.333333pt;}
.y122{bottom:636.733333pt;}
.yb3{bottom:636.893333pt;}
.y66{bottom:643.293333pt;}
.y15a{bottom:644.733333pt;}
.ye7{bottom:649.693333pt;}
.y191{bottom:649.853333pt;}
.y121{bottom:654.333333pt;}
.yb2{bottom:654.493333pt;}
.y158{bottom:660.093333pt;}
.y65{bottom:660.893333pt;}
.y190{bottom:667.453333pt;}
.y120{bottom:671.933333pt;}
.yb1{bottom:672.093333pt;}
.y64{bottom:678.493333pt;}
.y156{bottom:678.813333pt;}
.y18f{bottom:685.053333pt;}
.ye6{bottom:686.493333pt;}
.y11f{bottom:689.533333pt;}
.yb0{bottom:689.853333pt;}
.y63{bottom:696.093333pt;}
.ye5{bottom:699.293333pt;}
.y18e{bottom:702.653333pt;}
.yaf{bottom:707.133333pt;}
.y11e{bottom:707.293333pt;}
.y155{bottom:707.933333pt;}
.y62{bottom:713.853333pt;}
.ye4{bottom:714.666667pt;}
.y18d{bottom:720.253333pt;}
.yae{bottom:724.733333pt;}
.y11d{bottom:724.893333pt;}
.y154{bottom:725.853333pt;}
.ye3{bottom:730.026667pt;}
.y61{bottom:731.453333pt;}
.y18c{bottom:738.013333pt;}
.y11c{bottom:742.493333pt;}
.y153{bottom:743.613333pt;}
.ye2{bottom:745.373333pt;}
.y60{bottom:749.053333pt;}
.yad{bottom:750.653333pt;}
.y18b{bottom:755.613333pt;}
.y11b{bottom:759.773333pt;}
.y152{bottom:761.213333pt;}
.y5f{bottom:766.653333pt;}
.yac{bottom:768.253333pt;}
.y11a{bottom:772.413333pt;}
.y18a{bottom:773.213333pt;}
.ye0{bottom:775.973333pt;}
.y151{bottom:778.853333pt;}
.y5e{bottom:784.293333pt;}
.yab{bottom:786.053333pt;}
.yd{bottom:787.493333pt;}
.y189{bottom:790.853333pt;}
.y150{bottom:796.453333pt;}
.y5d{bottom:802.053333pt;}
.yaa{bottom:803.653333pt;}
.yde{bottom:806.693333pt;}
.y188{bottom:808.133333pt;}
.y14f{bottom:814.053333pt;}
.yc{bottom:814.373333pt;}
.y5c{bottom:819.653333pt;}
.ya9{bottom:821.253333pt;}
.ydc{bottom:822.040000pt;}
.yda{bottom:822.053333pt;}
.y187{bottom:825.893333pt;}
.y14e{bottom:831.813333pt;}
.yb{bottom:832.133333pt;}
.y5b{bottom:837.253333pt;}
.ya8{bottom:838.853333pt;}
.y186{bottom:839.013333pt;}
.y14d{bottom:849.413333pt;}
.ya{bottom:850.053333pt;}
.yd7{bottom:853.400000pt;}
.yd5{bottom:853.413333pt;}
.y184{bottom:854.373333pt;}
.y5a{bottom:854.853333pt;}
.ya7{bottom:856.453333pt;}
.y14c{bottom:867.013333pt;}
.y9{bottom:869.093333pt;}
.y183{bottom:870.373333pt;}
.y59{bottom:872.453333pt;}
.ya6{bottom:874.213333pt;}
.y14b{bottom:884.613333pt;}
.y182{bottom:886.373333pt;}
.y8{bottom:889.573333pt;}
.yd4{bottom:889.893333pt;}
.y58{bottom:890.213333pt;}
.ya5{bottom:891.493333pt;}
.y14a{bottom:902.213333pt;}
.y119{bottom:907.493333pt;}
.y57{bottom:907.813333pt;}
.ya4{bottom:917.413333pt;}
.y7{bottom:917.893333pt;}
.y149{bottom:919.653333pt;}
.y181{bottom:925.093333pt;}
.y56{bottom:925.413333pt;}
.ya3{bottom:935.013333pt;}
.y148{bottom:937.253333pt;}
.y55{bottom:943.013333pt;}
.y146{bottom:950.373333pt;}
.y5{bottom:952.453333pt;}
.ya2{bottom:952.613333pt;}
.y1b3{bottom:960.293333pt;}
.y54{bottom:960.613333pt;}
.ya1{bottom:970.053333pt;}
.y145{bottom:973.573333pt;}
.y4{bottom:978.373333pt;}
.y143{bottom:989.573333pt;}
.y53{bottom:995.973333pt;}
.y3{bottom:1004.293333pt;}
.y87{bottom:1013.280000pt;}
.y52{bottom:1013.600000pt;}
.y2{bottom:1030.400000pt;}
.y4f{bottom:1041.600000pt;}
.y1{bottom:1057.280000pt;}
.y4e{bottom:1060.960000pt;}
.h1b{height:15.186667pt;}
.h17{height:15.200000pt;}
.he{height:15.346667pt;}
.h14{height:15.360000pt;}
.h25{height:15.378667pt;}
.h27{height:15.386667pt;}
.h18{height:15.680000pt;}
.h26{height:15.986667pt;}
.h19{height:16.786667pt;}
.h22{height:16.946667pt;}
.h1a{height:17.906667pt;}
.h24{height:18.066667pt;}
.h1e{height:18.080000pt;}
.h21{height:18.546667pt;}
.h7{height:19.506667pt;}
.h23{height:19.666667pt;}
.h1f{height:22.080000pt;}
.h1c{height:23.186667pt;}
.h1d{height:23.360000pt;}
.h11{height:30.546667pt;}
.hf{height:30.552000pt;}
.h10{height:30.560000pt;}
.h13{height:30.580000pt;}
.h12{height:30.706667pt;}
.h15{height:30.716000pt;}
.h16{height:30.720000pt;}
.h9{height:38.413438pt;}
.h6{height:52.134375pt;}
.h20{height:52.990313pt;}
.hb{height:53.535000pt;}
.hc{height:54.598989pt;}
.hd{height:55.298750pt;}
.h3{height:57.787500pt;}
.h4{height:59.340000pt;}
.h2{height:75.465000pt;}
.h5{height:85.785000pt;}
.h8{height:433.973333pt;}
.ha{height:433.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:33.272000pt;}
.w21{width:41.426667pt;}
.w1d{width:46.386667pt;}
.w2f{width:57.312000pt;}
.w31{width:58.738667pt;}
.w8{width:59.840000pt;}
.w25{width:60.512000pt;}
.w27{width:61.298667pt;}
.w20{width:62.226667pt;}
.w1c{width:64.152000pt;}
.w35{width:72.306667pt;}
.w28{width:79.506667pt;}
.w32{width:80.946667pt;}
.w1a{width:82.866667pt;}
.w6{width:86.552000pt;}
.w13{width:87.352000pt;}
.w7{width:96.178667pt;}
.wf{width:96.946667pt;}
.w14{width:96.978667pt;}
.w18{width:97.600000pt;}
.w1e{width:105.938667pt;}
.w16{width:113.746667pt;}
.w2c{width:114.546667pt;}
.w2b{width:115.058667pt;}
.w26{width:117.266667pt;}
.we{width:120.498667pt;}
.w12{width:120.658667pt;}
.w1b{width:121.138667pt;}
.w9{width:121.632000pt;}
.w30{width:121.906667pt;}
.w19{width:124.032000pt;}
.w11{width:126.912000pt;}
.wd{width:127.072000pt;}
.wc{width:130.560000pt;}
.w1f{width:138.426667pt;}
.w23{width:140.312000pt;}
.w2d{width:142.072000pt;}
.w22{width:144.173333pt;}
.w3{width:151.066667pt;}
.w4{width:151.080000pt;}
.w24{width:158.733333pt;}
.w2e{width:159.853333pt;}
.w17{width:174.898667pt;}
.w2a{width:177.626667pt;}
.w34{width:185.306667pt;}
.w29{width:204.818667pt;}
.w10{width:212.066667pt;}
.wb{width:212.546667pt;}
.w15{width:215.706667pt;}
.wa{width:226.733333pt;}
.w33{width:248.338667pt;}
.w2{width:556.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x2{left:43.360000pt;}
.x1{left:48.160000pt;}
.xc{left:53.120000pt;}
.x5{left:72.000000pt;}
.x48{left:76.480000pt;}
.x11{left:79.720000pt;}
.x6{left:84.840000pt;}
.x2d{left:86.440000pt;}
.x23{left:88.200000pt;}
.x29{left:90.920000pt;}
.x1c{left:95.560000pt;}
.x17{left:96.680000pt;}
.x7{left:118.120000pt;}
.x1d{left:159.720000pt;}
.x12{left:167.080000pt;}
.x34{left:173.786667pt;}
.x35{left:183.226667pt;}
.x36{left:193.626667pt;}
.x37{left:203.226667pt;}
.x8{left:204.680000pt;}
.x1e{left:206.120000pt;}
.x24{left:228.520000pt;}
.x38{left:238.906667pt;}
.x13{left:264.066667pt;}
.xd{left:265.666667pt;}
.x18{left:271.586667pt;}
.x2a{left:295.746667pt;}
.x9{left:300.866667pt;}
.x39{left:310.306667pt;}
.x1f{left:312.066667pt;}
.x31{left:334.786667pt;}
.x3a{left:337.666667pt;}
.x3b{left:347.266667pt;}
.xa{left:360.706667pt;}
.x19{left:369.186667pt;}
.x25{left:387.266667pt;}
.x2e{left:388.546667pt;}
.xe{left:396.226667pt;}
.x3c{left:401.186667pt;}
.x3d{left:410.626667pt;}
.x2f{left:445.866667pt;}
.x26{left:447.626667pt;}
.x20{left:450.506667pt;}
.x3e{left:455.133333pt;}
.x2b{left:473.386667pt;}
.x14{left:479.786667pt;}
.xb{left:482.346667pt;}
.x1a{left:493.226667pt;}
.x3f{left:509.373333pt;}
.x21{left:512.746667pt;}
.x40{left:519.133333pt;}
.x32{left:520.106667pt;}
.xf{left:523.306667pt;}
.x41{left:548.573333pt;}
.x22{left:554.186667pt;}
.x42{left:558.173333pt;}
.x27{left:564.906667pt;}
.x30{left:567.786667pt;}
.x1b{left:576.106667pt;}
.x2c{left:588.453333pt;}
.x43{left:598.213333pt;}
.x4{left:599.493333pt;}
.x15{left:600.453333pt;}
.x28{left:626.213333pt;}
.x33{left:635.173333pt;}
.x10{left:643.813333pt;}
.x44{left:650.373333pt;}
.x45{left:659.973333pt;}
.x46{left:680.133333pt;}
.x47{left:689.733333pt;}
.x16{left:712.933333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  