
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7fc3a945228d94b53cec2786.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_50f7a83611575ce106411e92.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919434;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_90247b0ad6ca8da8f371a7e9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_573026d6995ad134691dd75e.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_8c16c198a5b10291a8e26d37.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e934f3d5eb43fc6b2d52b8da.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls7{letter-spacing:-0.057000px;}
.ls12{letter-spacing:-0.038880px;}
.ls14{letter-spacing:-0.014760px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.098400px;}
.ls11{letter-spacing:0.114600px;}
.ls13{letter-spacing:0.115800px;}
.ls4{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.374760px;}
.ls17{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.396600px;}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wse{word-spacing:-13.342200px;}
.ws10{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.wsd{word-spacing:-13.187520px;}
.ws9{word-spacing:-13.039800px;}
.wsc{word-spacing:-10.648200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:0.228000px;}
.ws4{word-spacing:4.304880px;}
._e{margin-left:-3.961200px;}
._3{margin-left:-2.890200px;}
._0{margin-left:-1.110000px;}
._2{width:1.930116px;}
._a{width:3.022187px;}
._b{width:4.449000px;}
._c{width:5.815212px;}
._d{width:7.450794px;}
._6{width:8.647802px;}
._5{width:9.739200px;}
._4{width:11.242200px;}
._7{width:14.248200px;}
._f{width:15.631801px;}
._1{width:17.306964px;}
._13{width:19.118160px;}
._14{width:20.555040px;}
._15{width:21.727404px;}
._8{width:23.386800px;}
._9{width:24.521519px;}
._19{width:25.578840px;}
._11{width:26.633160px;}
._12{width:33.847560px;}
._1a{width:36.155880px;}
._18{width:40.100040px;}
._16{width:100.340280px;}
._17{width:102.384360px;}
._10{width:115.069680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:7.830000px;}
.y31{bottom:7.920000px;}
.y2d{bottom:25.380000px;}
.y8b{bottom:25.470000px;}
.y8a{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y55{bottom:122.700000px;}
.ybf{bottom:124.410000px;}
.y156{bottom:128.100000px;}
.y1bd{bottom:133.320000px;}
.yf6{bottom:139.170000px;}
.y54{bottom:140.250000px;}
.y88{bottom:143.670000px;}
.y136{bottom:144.480000px;}
.y19f{bottom:144.840000px;}
.y155{bottom:145.650000px;}
.y1bc{bottom:150.870000px;}
.y175{bottom:154.200000px;}
.y11d{bottom:156.180000px;}
.yf5{bottom:156.810000px;}
.y53{bottom:157.890000px;}
.y26{bottom:159.330000px;}
.ybe{bottom:160.050000px;}
.y135{bottom:162.120000px;}
.y19e{bottom:162.480000px;}
.y1bb{bottom:168.510000px;}
.yad{bottom:171.210000px;}
.y174{bottom:171.840000px;}
.y11c{bottom:173.730000px;}
.yf4{bottom:174.360000px;}
.y25{bottom:176.880000px;}
.y87{bottom:179.310000px;}
.y134{bottom:179.670000px;}
.y154{bottom:181.200000px;}
.yac{bottom:188.760000px;}
.y19d{bottom:189.030000px;}
.y173{bottom:189.390000px;}
.y11b{bottom:191.370000px;}
.yf3{bottom:191.910000px;}
.ybd{bottom:192.270000px;}
.y52{bottom:193.350000px;}
.y24{bottom:194.430000px;}
.y1ba{bottom:195.060000px;}
.y133{bottom:197.310000px;}
.y153{bottom:198.840000px;}
.yab{bottom:206.400000px;}
.y19c{bottom:206.580000px;}
.y11a{bottom:208.920000px;}
.y51{bottom:211.800000px;}
.y1b9{bottom:212.610000px;}
.y86{bottom:214.860000px;}
.y152{bottom:216.390000px;}
.yf2{bottom:218.550000px;}
.y132{bottom:223.860000px;}
.yaa{bottom:223.950000px;}
.y172{bottom:224.940000px;}
.y23{bottom:230.070000px;}
.y50{bottom:230.250000px;}
.y19b{bottom:233.220000px;}
.ydf{bottom:236.640000px;}
.y1b8{bottom:239.250000px;}
.y171{bottom:242.580000px;}
.y119{bottom:244.470000px;}
.y22{bottom:247.620000px;}
.y85{bottom:250.410000px;}
.y19a{bottom:250.770000px;}
.y151{bottom:251.940000px;}
.yde{bottom:254.280000px;}
.yf1{bottom:254.460000px;}
.y1b7{bottom:256.800000px;}
.y131{bottom:259.410000px;}
.ya9{bottom:259.500000px;}
.y170{bottom:260.130000px;}
.y118{bottom:262.110000px;}
.y21{bottom:265.260000px;}
.y4f{bottom:266.700000px;}
.y84{bottom:268.050000px;}
.y199{bottom:268.410000px;}
.y150{bottom:269.580000px;}
.ydd{bottom:271.830000px;}
.y130{bottom:277.050000px;}
.ya8{bottom:277.140000px;}
.y117{bottom:279.660000px;}
.y20{bottom:282.810000px;}
.y1b6{bottom:283.440000px;}
.y4e{bottom:284.250000px;}
.y83{bottom:285.600000px;}
.y14f{bottom:287.130000px;}
.ydc{bottom:289.470000px;}
.y12f{bottom:294.600000px;}
.ya7{bottom:294.690000px;}
.y198{bottom:294.960000px;}
.y16f{bottom:295.770000px;}
.y116{bottom:297.300000px;}
.y1f{bottom:300.360000px;}
.y1b5{bottom:300.990000px;}
.y4d{bottom:301.800000px;}
.yf0{bottom:302.700000px;}
.y82{bottom:303.240000px;}
.y12e{bottom:312.240000px;}
.y197{bottom:312.510000px;}
.y16e{bottom:313.320000px;}
.y4c{bottom:319.440000px;}
.yef{bottom:320.250000px;}
.ya6{bottom:321.330000px;}
.y14e{bottom:322.770000px;}
.ydb{bottom:325.020000px;}
.y1b4{bottom:327.540000px;}
.y16d{bottom:330.870000px;}
.y115{bottom:332.850000px;}
.y1e{bottom:336.000000px;}
.yee{bottom:337.890000px;}
.y81{bottom:338.790000px;}
.y196{bottom:339.150000px;}
.y14d{bottom:340.320000px;}
.yda{bottom:342.570000px;}
.y1b3{bottom:345.180000px;}
.y4b{bottom:345.990000px;}
.y12d{bottom:347.790000px;}
.y114{bottom:350.400000px;}
.y1d{bottom:353.550000px;}
.yed{bottom:355.440000px;}
.ya5{bottom:356.160000px;}
.y80{bottom:356.340000px;}
.y195{bottom:356.700000px;}
.y16c{bottom:357.510000px;}
.yd9{bottom:360.210000px;}
.y12c{bottom:365.340000px;}
.y14c{bottom:366.870000px;}
.y113{bottom:368.040000px;}
.ya4{bottom:368.310000px;}
.y1c{bottom:371.190000px;}
.y1b2{bottom:371.730000px;}
.yec{bottom:373.080000px;}
.y7f{bottom:373.980000px;}
.yd8{bottom:377.760000px;}
.y4a{bottom:381.630000px;}
.y12b{bottom:382.980000px;}
.y194{bottom:383.340000px;}
.y112{bottom:385.590000px;}
.y1b{bottom:388.740000px;}
.y1b1{bottom:389.370000px;}
.y7e{bottom:391.530000px;}
.y16b{bottom:393.060000px;}
.yd7{bottom:395.400000px;}
.ya3{bottom:395.670000px;}
.y49{bottom:399.180000px;}
.y12a{bottom:400.530000px;}
.y193{bottom:400.890000px;}
.y14b{bottom:402.510000px;}
.y1a{bottom:406.290000px;}
.yeb{bottom:408.630000px;}
.y16a{bottom:410.700000px;}
.y111{bottom:412.230000px;}
.y1b0{bottom:415.920000px;}
.y48{bottom:416.730000px;}
.y14a{bottom:420.060000px;}
.ya2{bottom:423.030000px;}
.y19{bottom:423.930000px;}
.yea{bottom:426.180000px;}
.y7d{bottom:427.170000px;}
.y192{bottom:427.800000px;}
.y169{bottom:428.250000px;}
.yd6{bottom:430.950000px;}
.y1af{bottom:433.470000px;}
.y47{bottom:434.370000px;}
.y129{bottom:436.170000px;}
.y149{bottom:437.700000px;}
.ye9{bottom:443.820000px;}
.y7c{bottom:444.720000px;}
.y110{bottom:447.780000px;}
.yd5{bottom:448.500000px;}
.ya1{bottom:450.300000px;}
.y18{bottom:450.840000px;}
.y46{bottom:451.920000px;}
.y128{bottom:453.720000px;}
.y71{bottom:455.520000px;}
.y1ae{bottom:460.110000px;}
.ye8{bottom:461.370000px;}
.y7b{bottom:462.270000px;}
.y168{bottom:463.800000px;}
.y10f{bottom:465.330000px;}
.yd4{bottom:466.140000px;}
.y127{bottom:471.300000px;}
.y148{bottom:473.280000px;}
.y70{bottom:474.000000px;}
.y191{bottom:476.070000px;}
.ya0{bottom:477.690000px;}
.ye7{bottom:479.040000px;}
.y7a{bottom:479.940000px;}
.y167{bottom:481.470000px;}
.y10e{bottom:483.000000px;}
.yd3{bottom:483.720000px;}
.y45{bottom:487.590000px;}
.y126{bottom:488.940000px;}
.y147{bottom:490.830000px;}
.y6f{bottom:492.360000px;}
.y166{bottom:499.020000px;}
.y17{bottom:499.110000px;}
.y10d{bottom:500.550000px;}
.yd2{bottom:501.360000px;}
.y190{bottom:502.980000px;}
.y1ad{bottom:504.330000px;}
.y9f{bottom:505.050000px;}
.y44{bottom:505.140000px;}
.y125{bottom:506.490000px;}
.y146{bottom:508.470000px;}
.y6e{bottom:510.810000px;}
.ye6{bottom:514.590000px;}
.y79{bottom:515.490000px;}
.y16{bottom:517.020000px;}
.y1ac{bottom:521.880000px;}
.y43{bottom:522.690000px;}
.y145{bottom:526.020000px;}
.ye5{bottom:532.140000px;}
.y9e{bottom:532.410000px;}
.y78{bottom:533.040000px;}
.y165{bottom:534.660000px;}
.y10c{bottom:536.190000px;}
.yd1{bottom:536.910000px;}
.y42{bottom:540.330000px;}
.y124{bottom:542.040000px;}
.y6d{bottom:547.260000px;}
.y1ab{bottom:548.430000px;}
.ye4{bottom:549.780000px;}
.y77{bottom:550.680000px;}
.y164{bottom:552.210000px;}
.y10b{bottom:553.740000px;}
.y15{bottom:554.010000px;}
.yd0{bottom:554.460000px;}
.y123{bottom:559.680000px;}
.y144{bottom:561.660000px;}
.y1aa{bottom:566.070000px;}
.ye3{bottom:567.330000px;}
.y76{bottom:568.230000px;}
.y163{bottom:569.760000px;}
.y10a{bottom:571.290000px;}
.y14{bottom:571.650000px;}
.ycf{bottom:572.100000px;}
.y41{bottom:575.880000px;}
.y122{bottom:577.230000px;}
.y143{bottom:579.210000px;}
.y6c{bottom:582.810000px;}
.y18f{bottom:588.660000px;}
.y109{bottom:588.930000px;}
.y13{bottom:589.200000px;}
.y1a9{bottom:592.620000px;}
.y40{bottom:593.520000px;}
.ye2{bottom:593.970000px;}
.y75{bottom:594.870000px;}
.y162{bottom:596.400000px;}
.y142{bottom:596.760000px;}
.y9d{bottom:598.650000px;}
.y121{bottom:603.870000px;}
.y18e{bottom:606.210000px;}
.y12{bottom:606.840000px;}
.y1a8{bottom:610.260000px;}
.y3f{bottom:611.070000px;}
.y141{bottom:614.400000px;}
.y6b{bottom:618.360000px;}
.y18d{bottom:623.760000px;}
.y11{bottom:624.390000px;}
.y108{bottom:624.480000px;}
.y3e{bottom:628.620000px;}
.ye1{bottom:629.520000px;}
.y74{bottom:630.780000px;}
.y161{bottom:631.950000px;}
.yce{bottom:633.480000px;}
.y9c{bottom:634.200000px;}
.y6a{bottom:636.810000px;}
.y120{bottom:639.780000px;}
.y140{bottom:640.950000px;}
.y10{bottom:641.940000px;}
.y107{bottom:642.120000px;}
.ycd{bottom:645.720000px;}
.y3d{bottom:646.260000px;}
.y160{bottom:649.590000px;}
.y9b{bottom:651.840000px;}
.y1a7{bottom:654.360000px;}
.y69{bottom:655.170000px;}
.y18c{bottom:659.400000px;}
.yf{bottom:659.580000px;}
.y106{bottom:659.670000px;}
.ye0{bottom:661.740000px;}
.y15f{bottom:667.140000px;}
.y9a{bottom:669.390000px;}
.y3c{bottom:672.810000px;}
.y68{bottom:673.620000px;}
.y13f{bottom:676.860000px;}
.y18b{bottom:676.950000px;}
.ye{bottom:677.130000px;}
.y73{bottom:679.020000px;}
.y1a6{bottom:681.000000px;}
.y105{bottom:686.220000px;}
.y99{bottom:687.030000px;}
.y11f{bottom:688.020000px;}
.ycc{bottom:690.630000px;}
.y67{bottom:692.070000px;}
.y18a{bottom:694.590000px;}
.yd{bottom:694.770000px;}
.y1a5{bottom:698.550000px;}
.y15e{bottom:702.690000px;}
.y3b{bottom:708.720000px;}
.y66{bottom:710.430000px;}
.y72{bottom:711.240000px;}
.y189{bottom:712.140000px;}
.yc{bottom:712.320000px;}
.ycb{bottom:717.990000px;}
.y11e{bottom:720.240000px;}
.y15d{bottom:720.330000px;}
.y104{bottom:721.140000px;}
.y98{bottom:722.580000px;}
.y13e{bottom:725.190000px;}
.yb{bottom:729.870000px;}
.y103{bottom:733.290000px;}
.y15c{bottom:737.880000px;}
.y97{bottom:740.130000px;}
.y13d{bottom:742.740000px;}
.yca{bottom:745.260000px;}
.y65{bottom:746.880000px;}
.y188{bottom:747.690000px;}
.ya{bottom:756.870000px;}
.y3a{bottom:757.050000px;}
.y96{bottom:757.770000px;}
.y13c{bottom:760.290000px;}
.y102{bottom:760.650000px;}
.ybc{bottom:764.880000px;}
.y187{bottom:765.330000px;}
.y1a4{bottom:769.290000px;}
.yc9{bottom:772.620000px;}
.y64{bottom:773.520000px;}
.y39{bottom:774.600000px;}
.y95{bottom:775.320000px;}
.y13b{bottom:777.930000px;}
.ybb{bottom:782.520000px;}
.y186{bottom:782.880000px;}
.y1a3{bottom:786.930000px;}
.y1c8{bottom:787.290000px;}
.y101{bottom:787.920000px;}
.y15b{bottom:791.070000px;}
.y38{bottom:792.150000px;}
.yc8{bottom:799.980000px;}
.yba{bottom:800.070000px;}
.y185{bottom:800.520000px;}
.y9{bottom:803.580000px;}
.y1c7{bottom:804.930000px;}
.y15a{bottom:808.620000px;}
.y63{bottom:809.070000px;}
.y37{bottom:809.790000px;}
.y94{bottom:810.960000px;}
.y13a{bottom:813.480000px;}
.y100{bottom:815.280000px;}
.yb9{bottom:817.620000px;}
.y159{bottom:826.260000px;}
.y62{bottom:826.620000px;}
.y93{bottom:828.510000px;}
.y139{bottom:831.030000px;}
.y1c6{bottom:831.480000px;}
.y184{bottom:836.070000px;}
.y8{bottom:839.130000px;}
.yff{bottom:842.640000px;}
.y61{bottom:844.260000px;}
.y36{bottom:844.620000px;}
.y92{bottom:846.060000px;}
.y138{bottom:848.670000px;}
.y1c5{bottom:849.030000px;}
.y158{bottom:852.810000px;}
.yb8{bottom:853.260000px;}
.y183{bottom:853.620000px;}
.y35{bottom:856.770000px;}
.y1a2{bottom:857.670000px;}
.yc7{bottom:866.220000px;}
.y1c4{bottom:866.670000px;}
.yfe{bottom:870.000000px;}
.yb7{bottom:870.810000px;}
.y60{bottom:871.170000px;}
.y182{bottom:871.260000px;}
.y91{bottom:872.700000px;}
.y7{bottom:874.950000px;}
.y1a1{bottom:875.220000px;}
.y34{bottom:884.130000px;}
.yb6{bottom:888.450000px;}
.y157{bottom:888.720000px;}
.y181{bottom:888.810000px;}
.y1c3{bottom:893.220000px;}
.yfd{bottom:897.270000px;}
.yc6{bottom:901.860000px;}
.yb5{bottom:906.000000px;}
.y90{bottom:907.530000px;}
.y1c2{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y33{bottom:911.490000px;}
.y5f{bottom:919.410000px;}
.y8f{bottom:919.680000px;}
.y180{bottom:924.450000px;}
.y5e{bottom:936.960000px;}
.y1c1{bottom:937.410000px;}
.y32{bottom:938.850000px;}
.yb4{bottom:941.550000px;}
.y17f{bottom:942.000000px;}
.y1a0{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y5d{bottom:954.600000px;}
.y1c0{bottom:954.960000px;}
.yb3{bottom:959.190000px;}
.y17e{bottom:959.550000px;}
.yfc{bottom:963.600000px;}
.y30{bottom:966.120000px;}
.y5c{bottom:972.150000px;}
.yc5{bottom:972.600000px;}
.y8e{bottom:974.400000px;}
.yb2{bottom:976.740000px;}
.y17d{bottom:977.190000px;}
.y137{bottom:981.150000px;}
.y1bf{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.yc4{bottom:990.150000px;}
.y2f{bottom:993.480000px;}
.yb1{bottom:994.290000px;}
.y17c{bottom:994.740000px;}
.yfb{bottom:999.150000px;}
.y8d{bottom:1001.760000px;}
.y5b{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.yfa{bottom:1016.820000px;}
.y2c{bottom:1020.870000px;}
.yb0{bottom:1020.960000px;}
.y5a{bottom:1025.370000px;}
.y8c{bottom:1029.060000px;}
.y17b{bottom:1030.320000px;}
.yf9{bottom:1034.370000px;}
.y59{bottom:1042.920000px;}
.y1be{bottom:1043.370000px;}
.y17a{bottom:1047.960000px;}
.yf8{bottom:1051.920000px;}
.y89{bottom:1056.420000px;}
.yaf{bottom:1056.870000px;}
.y58{bottom:1060.560000px;}
.yc3{bottom:1060.920000px;}
.y179{bottom:1065.510000px;}
.y57{bottom:1078.110000px;}
.yc2{bottom:1078.560000px;}
.y178{bottom:1083.150000px;}
.y2b{bottom:1087.110000px;}
.yf7{bottom:1087.560000px;}
.yc1{bottom:1096.110000px;}
.y177{bottom:1100.700000px;}
.y56{bottom:1104.750000px;}
.yae{bottom:1105.110000px;}
.yc0{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y176{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hb{height:26.550000px;}
.h9{height:26.580000px;}
.ha{height:26.640000px;}
.h11{height:26.670000px;}
.h2{height:26.995781px;}
.h3{height:38.100586px;}
.hc{height:40.539023px;}
.h6{height:42.154453px;}
.h8{height:44.100000px;}
.h12{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:61.740000px;}
.hf{height:61.793886px;}
.he{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:48.720000px;}
.w9{width:84.330000px;}
.wc{width:92.520000px;}
.w14{width:93.060000px;}
.w5{width:94.950000px;}
.w1a{width:105.480000px;}
.w17{width:107.820000px;}
.w16{width:113.700000px;}
.w18{width:113.940000px;}
.w11{width:116.580000px;}
.w15{width:120.510000px;}
.w19{width:126.930000px;}
.wd{width:134.940000px;}
.wb{width:137.430000px;}
.w13{width:147.630000px;}
.w6{width:148.080000px;}
.w4{width:149.310000px;}
.w10{width:153.540000px;}
.w7{width:158.670000px;}
.we{width:158.760000px;}
.wf{width:169.320000px;}
.w12{width:179.100000px;}
.w8{width:198.840000px;}
.wa{width:243.750000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.xe{left:66.690000px;}
.x1{left:68.040000px;}
.x22{left:92.070000px;}
.xb{left:95.039987px;}
.x2a{left:111.239987px;}
.x1f{left:115.739987px;}
.x4{left:145.260000px;}
.x1a{left:186.150000px;}
.x6{left:194.700000px;}
.x2{left:202.799987px;}
.x23{left:206.580000px;}
.x13{left:230.789987px;}
.x17{left:236.549987px;}
.x21{left:242.309987px;}
.x29{left:256.349987px;}
.x19{left:259.949987px;}
.x27{left:262.919987px;}
.xf{left:266.250000px;}
.xa{left:268.949987px;}
.xd{left:295.499987px;}
.x14{left:315.390000px;}
.x7{left:344.730000px;}
.x10{left:351.300000px;}
.x1b{left:366.060000px;}
.x24{left:429.780000px;}
.x8{left:440.490000px;}
.x15{left:474.960000px;}
.x1c{left:514.500000px;}
.x25{left:557.430000px;}
.x9{left:589.290000px;}
.x11{left:595.860000px;}
.x1d{left:608.280000px;}
.x16{left:645.090000px;}
.x26{left:663.720000px;}
.x1e{left:729.510000px;}
.x12{left:734.010000px;}
.x18{left:787.559987px;}
.x3{left:792.059987px;}
.x20{left:795.389987px;}
.x28{left:797.639987px;}
.xc{left:804.389987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls12{letter-spacing:-0.034560pt;}
.ls14{letter-spacing:-0.013120pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.087467pt;}
.ls11{letter-spacing:0.101867pt;}
.ls13{letter-spacing:0.102933pt;}
.ls4{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.333120pt;}
.ls17{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.352533pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.859733pt;}
.ws10{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.wsd{word-spacing:-11.722240pt;}
.ws9{word-spacing:-11.590933pt;}
.wsc{word-spacing:-9.465067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:0.202667pt;}
.ws4{word-spacing:3.826560pt;}
._e{margin-left:-3.521067pt;}
._3{margin-left:-2.569067pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.715659pt;}
._a{width:2.686389pt;}
._b{width:3.954667pt;}
._c{width:5.169078pt;}
._d{width:6.622928pt;}
._6{width:7.686935pt;}
._5{width:8.657066pt;}
._4{width:9.993066pt;}
._7{width:12.665066pt;}
._f{width:13.894934pt;}
._1{width:15.383968pt;}
._13{width:16.993920pt;}
._14{width:18.271147pt;}
._15{width:19.313248pt;}
._8{width:20.788267pt;}
._9{width:21.796906pt;}
._19{width:22.736747pt;}
._11{width:23.673920pt;}
._12{width:30.086720pt;}
._1a{width:32.138560pt;}
._18{width:35.644480pt;}
._16{width:89.191360pt;}
._17{width:91.008320pt;}
._10{width:102.284160pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:6.960000pt;}
.y31{bottom:7.040000pt;}
.y2d{bottom:22.560000pt;}
.y8b{bottom:22.640000pt;}
.y8a{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y55{bottom:109.066667pt;}
.ybf{bottom:110.586667pt;}
.y156{bottom:113.866667pt;}
.y1bd{bottom:118.506667pt;}
.yf6{bottom:123.706667pt;}
.y54{bottom:124.666667pt;}
.y88{bottom:127.706667pt;}
.y136{bottom:128.426667pt;}
.y19f{bottom:128.746667pt;}
.y155{bottom:129.466667pt;}
.y1bc{bottom:134.106667pt;}
.y175{bottom:137.066667pt;}
.y11d{bottom:138.826667pt;}
.yf5{bottom:139.386667pt;}
.y53{bottom:140.346667pt;}
.y26{bottom:141.626667pt;}
.ybe{bottom:142.266667pt;}
.y135{bottom:144.106667pt;}
.y19e{bottom:144.426667pt;}
.y1bb{bottom:149.786667pt;}
.yad{bottom:152.186667pt;}
.y174{bottom:152.746667pt;}
.y11c{bottom:154.426667pt;}
.yf4{bottom:154.986667pt;}
.y25{bottom:157.226667pt;}
.y87{bottom:159.386667pt;}
.y134{bottom:159.706667pt;}
.y154{bottom:161.066667pt;}
.yac{bottom:167.786667pt;}
.y19d{bottom:168.026667pt;}
.y173{bottom:168.346667pt;}
.y11b{bottom:170.106667pt;}
.yf3{bottom:170.586667pt;}
.ybd{bottom:170.906667pt;}
.y52{bottom:171.866667pt;}
.y24{bottom:172.826667pt;}
.y1ba{bottom:173.386667pt;}
.y133{bottom:175.386667pt;}
.y153{bottom:176.746667pt;}
.yab{bottom:183.466667pt;}
.y19c{bottom:183.626667pt;}
.y11a{bottom:185.706667pt;}
.y51{bottom:188.266667pt;}
.y1b9{bottom:188.986667pt;}
.y86{bottom:190.986667pt;}
.y152{bottom:192.346667pt;}
.yf2{bottom:194.266667pt;}
.y132{bottom:198.986667pt;}
.yaa{bottom:199.066667pt;}
.y172{bottom:199.946667pt;}
.y23{bottom:204.506667pt;}
.y50{bottom:204.666667pt;}
.y19b{bottom:207.306667pt;}
.ydf{bottom:210.346667pt;}
.y1b8{bottom:212.666667pt;}
.y171{bottom:215.626667pt;}
.y119{bottom:217.306667pt;}
.y22{bottom:220.106667pt;}
.y85{bottom:222.586667pt;}
.y19a{bottom:222.906667pt;}
.y151{bottom:223.946667pt;}
.yde{bottom:226.026667pt;}
.yf1{bottom:226.186667pt;}
.y1b7{bottom:228.266667pt;}
.y131{bottom:230.586667pt;}
.ya9{bottom:230.666667pt;}
.y170{bottom:231.226667pt;}
.y118{bottom:232.986667pt;}
.y21{bottom:235.786667pt;}
.y4f{bottom:237.066667pt;}
.y84{bottom:238.266667pt;}
.y199{bottom:238.586667pt;}
.y150{bottom:239.626667pt;}
.ydd{bottom:241.626667pt;}
.y130{bottom:246.266667pt;}
.ya8{bottom:246.346667pt;}
.y117{bottom:248.586667pt;}
.y20{bottom:251.386667pt;}
.y1b6{bottom:251.946667pt;}
.y4e{bottom:252.666667pt;}
.y83{bottom:253.866667pt;}
.y14f{bottom:255.226667pt;}
.ydc{bottom:257.306667pt;}
.y12f{bottom:261.866667pt;}
.ya7{bottom:261.946667pt;}
.y198{bottom:262.186667pt;}
.y16f{bottom:262.906667pt;}
.y116{bottom:264.266667pt;}
.y1f{bottom:266.986667pt;}
.y1b5{bottom:267.546667pt;}
.y4d{bottom:268.266667pt;}
.yf0{bottom:269.066667pt;}
.y82{bottom:269.546667pt;}
.y12e{bottom:277.546667pt;}
.y197{bottom:277.786667pt;}
.y16e{bottom:278.506667pt;}
.y4c{bottom:283.946667pt;}
.yef{bottom:284.666667pt;}
.ya6{bottom:285.626667pt;}
.y14e{bottom:286.906667pt;}
.ydb{bottom:288.906667pt;}
.y1b4{bottom:291.146667pt;}
.y16d{bottom:294.106667pt;}
.y115{bottom:295.866667pt;}
.y1e{bottom:298.666667pt;}
.yee{bottom:300.346667pt;}
.y81{bottom:301.146667pt;}
.y196{bottom:301.466667pt;}
.y14d{bottom:302.506667pt;}
.yda{bottom:304.506667pt;}
.y1b3{bottom:306.826667pt;}
.y4b{bottom:307.546667pt;}
.y12d{bottom:309.146667pt;}
.y114{bottom:311.466667pt;}
.y1d{bottom:314.266667pt;}
.yed{bottom:315.946667pt;}
.ya5{bottom:316.586667pt;}
.y80{bottom:316.746667pt;}
.y195{bottom:317.066667pt;}
.y16c{bottom:317.786667pt;}
.yd9{bottom:320.186667pt;}
.y12c{bottom:324.746667pt;}
.y14c{bottom:326.106667pt;}
.y113{bottom:327.146667pt;}
.ya4{bottom:327.386667pt;}
.y1c{bottom:329.946667pt;}
.y1b2{bottom:330.426667pt;}
.yec{bottom:331.626667pt;}
.y7f{bottom:332.426667pt;}
.yd8{bottom:335.786667pt;}
.y4a{bottom:339.226667pt;}
.y12b{bottom:340.426667pt;}
.y194{bottom:340.746667pt;}
.y112{bottom:342.746667pt;}
.y1b{bottom:345.546667pt;}
.y1b1{bottom:346.106667pt;}
.y7e{bottom:348.026667pt;}
.y16b{bottom:349.386667pt;}
.yd7{bottom:351.466667pt;}
.ya3{bottom:351.706667pt;}
.y49{bottom:354.826667pt;}
.y12a{bottom:356.026667pt;}
.y193{bottom:356.346667pt;}
.y14b{bottom:357.786667pt;}
.y1a{bottom:361.146667pt;}
.yeb{bottom:363.226667pt;}
.y16a{bottom:365.066667pt;}
.y111{bottom:366.426667pt;}
.y1b0{bottom:369.706667pt;}
.y48{bottom:370.426667pt;}
.y14a{bottom:373.386667pt;}
.ya2{bottom:376.026667pt;}
.y19{bottom:376.826667pt;}
.yea{bottom:378.826667pt;}
.y7d{bottom:379.706667pt;}
.y192{bottom:380.266667pt;}
.y169{bottom:380.666667pt;}
.yd6{bottom:383.066667pt;}
.y1af{bottom:385.306667pt;}
.y47{bottom:386.106667pt;}
.y129{bottom:387.706667pt;}
.y149{bottom:389.066667pt;}
.ye9{bottom:394.506667pt;}
.y7c{bottom:395.306667pt;}
.y110{bottom:398.026667pt;}
.yd5{bottom:398.666667pt;}
.ya1{bottom:400.266667pt;}
.y18{bottom:400.746667pt;}
.y46{bottom:401.706667pt;}
.y128{bottom:403.306667pt;}
.y71{bottom:404.906667pt;}
.y1ae{bottom:408.986667pt;}
.ye8{bottom:410.106667pt;}
.y7b{bottom:410.906667pt;}
.y168{bottom:412.266667pt;}
.y10f{bottom:413.626667pt;}
.yd4{bottom:414.346667pt;}
.y127{bottom:418.933333pt;}
.y148{bottom:420.693333pt;}
.y70{bottom:421.333333pt;}
.y191{bottom:423.173333pt;}
.ya0{bottom:424.613333pt;}
.ye7{bottom:425.813333pt;}
.y7a{bottom:426.613333pt;}
.y167{bottom:427.973333pt;}
.y10e{bottom:429.333333pt;}
.yd3{bottom:429.973333pt;}
.y45{bottom:433.413333pt;}
.y126{bottom:434.613333pt;}
.y147{bottom:436.293333pt;}
.y6f{bottom:437.653333pt;}
.y166{bottom:443.573333pt;}
.y17{bottom:443.653333pt;}
.y10d{bottom:444.933333pt;}
.yd2{bottom:445.653333pt;}
.y190{bottom:447.093333pt;}
.y1ad{bottom:448.293333pt;}
.y9f{bottom:448.933333pt;}
.y44{bottom:449.013333pt;}
.y125{bottom:450.213333pt;}
.y146{bottom:451.973333pt;}
.y6e{bottom:454.053333pt;}
.ye6{bottom:457.413333pt;}
.y79{bottom:458.213333pt;}
.y16{bottom:459.573333pt;}
.y1ac{bottom:463.893333pt;}
.y43{bottom:464.613333pt;}
.y145{bottom:467.573333pt;}
.ye5{bottom:473.013333pt;}
.y9e{bottom:473.253333pt;}
.y78{bottom:473.813333pt;}
.y165{bottom:475.253333pt;}
.y10c{bottom:476.613333pt;}
.yd1{bottom:477.253333pt;}
.y42{bottom:480.293333pt;}
.y124{bottom:481.813333pt;}
.y6d{bottom:486.453333pt;}
.y1ab{bottom:487.493333pt;}
.ye4{bottom:488.693333pt;}
.y77{bottom:489.493333pt;}
.y164{bottom:490.853333pt;}
.y10b{bottom:492.213333pt;}
.y15{bottom:492.453333pt;}
.yd0{bottom:492.853333pt;}
.y123{bottom:497.493333pt;}
.y144{bottom:499.253333pt;}
.y1aa{bottom:503.173333pt;}
.ye3{bottom:504.293333pt;}
.y76{bottom:505.093333pt;}
.y163{bottom:506.453333pt;}
.y10a{bottom:507.813333pt;}
.y14{bottom:508.133333pt;}
.ycf{bottom:508.533333pt;}
.y41{bottom:511.893333pt;}
.y122{bottom:513.093333pt;}
.y143{bottom:514.853333pt;}
.y6c{bottom:518.053333pt;}
.y18f{bottom:523.253333pt;}
.y109{bottom:523.493333pt;}
.y13{bottom:523.733333pt;}
.y1a9{bottom:526.773333pt;}
.y40{bottom:527.573333pt;}
.ye2{bottom:527.973333pt;}
.y75{bottom:528.773333pt;}
.y162{bottom:530.133333pt;}
.y142{bottom:530.453333pt;}
.y9d{bottom:532.133333pt;}
.y121{bottom:536.773333pt;}
.y18e{bottom:538.853333pt;}
.y12{bottom:539.413333pt;}
.y1a8{bottom:542.453333pt;}
.y3f{bottom:543.173333pt;}
.y141{bottom:546.133333pt;}
.y6b{bottom:549.653333pt;}
.y18d{bottom:554.453333pt;}
.y11{bottom:555.013333pt;}
.y108{bottom:555.093333pt;}
.y3e{bottom:558.773333pt;}
.ye1{bottom:559.573333pt;}
.y74{bottom:560.693333pt;}
.y161{bottom:561.733333pt;}
.yce{bottom:563.093333pt;}
.y9c{bottom:563.733333pt;}
.y6a{bottom:566.053333pt;}
.y120{bottom:568.693333pt;}
.y140{bottom:569.733333pt;}
.y10{bottom:570.613333pt;}
.y107{bottom:570.773333pt;}
.ycd{bottom:573.973333pt;}
.y3d{bottom:574.453333pt;}
.y160{bottom:577.413333pt;}
.y9b{bottom:579.413333pt;}
.y1a7{bottom:581.653333pt;}
.y69{bottom:582.373333pt;}
.y18c{bottom:586.133333pt;}
.yf{bottom:586.293333pt;}
.y106{bottom:586.373333pt;}
.ye0{bottom:588.213333pt;}
.y15f{bottom:593.013333pt;}
.y9a{bottom:595.013333pt;}
.y3c{bottom:598.053333pt;}
.y68{bottom:598.773333pt;}
.y13f{bottom:601.653333pt;}
.y18b{bottom:601.733333pt;}
.ye{bottom:601.893333pt;}
.y73{bottom:603.573333pt;}
.y1a6{bottom:605.333333pt;}
.y105{bottom:609.973333pt;}
.y99{bottom:610.693333pt;}
.y11f{bottom:611.573333pt;}
.ycc{bottom:613.893333pt;}
.y67{bottom:615.173333pt;}
.y18a{bottom:617.413333pt;}
.yd{bottom:617.573333pt;}
.y1a5{bottom:620.933333pt;}
.y15e{bottom:624.613333pt;}
.y3b{bottom:629.973333pt;}
.y66{bottom:631.493333pt;}
.y72{bottom:632.213333pt;}
.y189{bottom:633.013333pt;}
.yc{bottom:633.173333pt;}
.ycb{bottom:638.213333pt;}
.y11e{bottom:640.213333pt;}
.y15d{bottom:640.293333pt;}
.y104{bottom:641.013333pt;}
.y98{bottom:642.293333pt;}
.y13e{bottom:644.613333pt;}
.yb{bottom:648.773333pt;}
.y103{bottom:651.813333pt;}
.y15c{bottom:655.893333pt;}
.y97{bottom:657.893333pt;}
.y13d{bottom:660.213333pt;}
.yca{bottom:662.453333pt;}
.y65{bottom:663.893333pt;}
.y188{bottom:664.613333pt;}
.ya{bottom:672.773333pt;}
.y3a{bottom:672.933333pt;}
.y96{bottom:673.573333pt;}
.y13c{bottom:675.813333pt;}
.y102{bottom:676.133333pt;}
.ybc{bottom:679.893333pt;}
.y187{bottom:680.293333pt;}
.y1a4{bottom:683.813333pt;}
.yc9{bottom:686.773333pt;}
.y64{bottom:687.573333pt;}
.y39{bottom:688.533333pt;}
.y95{bottom:689.173333pt;}
.y13b{bottom:691.493333pt;}
.ybb{bottom:695.573333pt;}
.y186{bottom:695.893333pt;}
.y1a3{bottom:699.493333pt;}
.y1c8{bottom:699.813333pt;}
.y101{bottom:700.373333pt;}
.y15b{bottom:703.173333pt;}
.y38{bottom:704.133333pt;}
.yc8{bottom:711.093333pt;}
.yba{bottom:711.173333pt;}
.y185{bottom:711.573333pt;}
.y9{bottom:714.293333pt;}
.y1c7{bottom:715.493333pt;}
.y15a{bottom:718.773333pt;}
.y63{bottom:719.173333pt;}
.y37{bottom:719.813333pt;}
.y94{bottom:720.853333pt;}
.y13a{bottom:723.093333pt;}
.y100{bottom:724.693333pt;}
.yb9{bottom:726.773333pt;}
.y159{bottom:734.453333pt;}
.y62{bottom:734.773333pt;}
.y93{bottom:736.453333pt;}
.y139{bottom:738.693333pt;}
.y1c6{bottom:739.093333pt;}
.y184{bottom:743.173333pt;}
.y8{bottom:745.893333pt;}
.yff{bottom:749.013333pt;}
.y61{bottom:750.453333pt;}
.y36{bottom:750.773333pt;}
.y92{bottom:752.053333pt;}
.y138{bottom:754.373333pt;}
.y1c5{bottom:754.693333pt;}
.y158{bottom:758.053333pt;}
.yb8{bottom:758.453333pt;}
.y183{bottom:758.773333pt;}
.y35{bottom:761.573333pt;}
.y1a2{bottom:762.373333pt;}
.yc7{bottom:769.973333pt;}
.y1c4{bottom:770.373333pt;}
.yfe{bottom:773.333333pt;}
.yb7{bottom:774.053333pt;}
.y60{bottom:774.373333pt;}
.y182{bottom:774.453333pt;}
.y91{bottom:775.733333pt;}
.y7{bottom:777.733333pt;}
.y1a1{bottom:777.973333pt;}
.y34{bottom:785.893333pt;}
.yb6{bottom:789.733333pt;}
.y157{bottom:789.973333pt;}
.y181{bottom:790.053333pt;}
.y1c3{bottom:793.973333pt;}
.yfd{bottom:797.573333pt;}
.yc6{bottom:801.653333pt;}
.yb5{bottom:805.333333pt;}
.y90{bottom:806.693333pt;}
.y1c2{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y33{bottom:810.213333pt;}
.y5f{bottom:817.253333pt;}
.y8f{bottom:817.493333pt;}
.y180{bottom:821.733333pt;}
.y5e{bottom:832.853333pt;}
.y1c1{bottom:833.253333pt;}
.y32{bottom:834.533333pt;}
.yb4{bottom:836.933333pt;}
.y17f{bottom:837.333333pt;}
.y1a0{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y5d{bottom:848.533333pt;}
.y1c0{bottom:848.853333pt;}
.yb3{bottom:852.613333pt;}
.y17e{bottom:852.933333pt;}
.yfc{bottom:856.533333pt;}
.y30{bottom:858.773333pt;}
.y5c{bottom:864.133333pt;}
.yc5{bottom:864.533333pt;}
.y8e{bottom:866.133333pt;}
.yb2{bottom:868.213333pt;}
.y17d{bottom:868.613333pt;}
.y137{bottom:872.133333pt;}
.y1bf{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.yc4{bottom:880.133333pt;}
.y2f{bottom:883.093333pt;}
.yb1{bottom:883.813333pt;}
.y17c{bottom:884.213333pt;}
.yfb{bottom:888.133333pt;}
.y8d{bottom:890.453333pt;}
.y5b{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.yfa{bottom:903.840000pt;}
.y2c{bottom:907.440000pt;}
.yb0{bottom:907.520000pt;}
.y5a{bottom:911.440000pt;}
.y8c{bottom:914.720000pt;}
.y17b{bottom:915.840000pt;}
.yf9{bottom:919.440000pt;}
.y59{bottom:927.040000pt;}
.y1be{bottom:927.440000pt;}
.y17a{bottom:931.520000pt;}
.yf8{bottom:935.040000pt;}
.y89{bottom:939.040000pt;}
.yaf{bottom:939.440000pt;}
.y58{bottom:942.720000pt;}
.yc3{bottom:943.040000pt;}
.y179{bottom:947.120000pt;}
.y57{bottom:958.320000pt;}
.yc2{bottom:958.720000pt;}
.y178{bottom:962.800000pt;}
.y2b{bottom:966.320000pt;}
.yf7{bottom:966.720000pt;}
.yc1{bottom:974.320000pt;}
.y177{bottom:978.400000pt;}
.y56{bottom:982.000000pt;}
.yae{bottom:982.320000pt;}
.yc0{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y176{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.h9{height:23.626667pt;}
.ha{height:23.680000pt;}
.h11{height:23.706667pt;}
.h2{height:23.996250pt;}
.h3{height:33.867188pt;}
.hc{height:36.034687pt;}
.h6{height:37.470625pt;}
.h8{height:39.200000pt;}
.h12{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:54.880000pt;}
.hf{height:54.927899pt;}
.he{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:43.306667pt;}
.w9{width:74.960000pt;}
.wc{width:82.240000pt;}
.w14{width:82.720000pt;}
.w5{width:84.400000pt;}
.w1a{width:93.760000pt;}
.w17{width:95.840000pt;}
.w16{width:101.066667pt;}
.w18{width:101.280000pt;}
.w11{width:103.626667pt;}
.w15{width:107.120000pt;}
.w19{width:112.826667pt;}
.wd{width:119.946667pt;}
.wb{width:122.160000pt;}
.w13{width:131.226667pt;}
.w6{width:131.626667pt;}
.w4{width:132.720000pt;}
.w10{width:136.480000pt;}
.w7{width:141.040000pt;}
.we{width:141.120000pt;}
.wf{width:150.506667pt;}
.w12{width:159.200000pt;}
.w8{width:176.746667pt;}
.wa{width:216.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.xe{left:59.280000pt;}
.x1{left:60.480000pt;}
.x22{left:81.840000pt;}
.xb{left:84.479988pt;}
.x2a{left:98.879988pt;}
.x1f{left:102.879988pt;}
.x4{left:129.120000pt;}
.x1a{left:165.466667pt;}
.x6{left:173.066667pt;}
.x2{left:180.266655pt;}
.x23{left:183.626667pt;}
.x13{left:205.146655pt;}
.x17{left:210.266655pt;}
.x21{left:215.386655pt;}
.x29{left:227.866655pt;}
.x19{left:231.066655pt;}
.x27{left:233.706655pt;}
.xf{left:236.666667pt;}
.xa{left:239.066655pt;}
.xd{left:262.666655pt;}
.x14{left:280.346667pt;}
.x7{left:306.426667pt;}
.x10{left:312.266667pt;}
.x1b{left:325.386667pt;}
.x24{left:382.026667pt;}
.x8{left:391.546667pt;}
.x15{left:422.186667pt;}
.x1c{left:457.333333pt;}
.x25{left:495.493333pt;}
.x9{left:523.813333pt;}
.x11{left:529.653333pt;}
.x1d{left:540.693333pt;}
.x16{left:573.413333pt;}
.x26{left:589.973333pt;}
.x1e{left:648.453333pt;}
.x12{left:652.453333pt;}
.x18{left:700.053322pt;}
.x3{left:704.053322pt;}
.x20{left:707.013322pt;}
.x28{left:709.013322pt;}
.xc{left:715.013322pt;}
}




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