
    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_b8c327195112a0643c21cae7.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_d41405e1c5c1543615fc0dfd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6804cded36733e69be02c146.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_26a60cc09156e902139a03bf.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_229f7b00ac5aaecaf64f96e3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bcd374862d4b3c94a9006e00.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_6f68644c0189bd94c2854bd2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1473bf65c37eab764c7a9a0a.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.057000px;}
.ls17{letter-spacing:-0.037800px;}
.ls15{letter-spacing:-0.018360px;}
.lsb{letter-spacing:-0.015000px;}
.ls12{letter-spacing:-0.014760px;}
.ls1c{letter-spacing:-0.009000px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.041760px;}
.ls13{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.105600px;}
.ls19{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.425520px;}
.ls1b{letter-spacing:47.726640px;}
.ls1a{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;}
.ws8{word-spacing:-14.493600px;}
.wsf{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.424400px;}
.wsb{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.332000px;}
.ws9{word-spacing:-13.275600px;}
.wsd{word-spacing:-13.275360px;}
.ws10{word-spacing:-13.268160px;}
.ws4{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.217400px;}
.wse{word-spacing:-13.211640px;}
.ws5{word-spacing:-13.211400px;}
.ws11{word-spacing:-13.208040px;}
.ws13{word-spacing:-13.188600px;}
.ws6{word-spacing:-13.072800px;}
.wsc{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.wsa{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._a{margin-left:-3.839760px;}
._4{margin-left:-2.709600px;}
._0{margin-left:-1.110000px;}
._3{width:1.142882px;}
._6{width:2.161188px;}
._2{width:3.470518px;}
._1{width:4.556868px;}
._7{width:5.598863px;}
._5{width:6.853800px;}
._b{width:8.176200px;}
._11{width:9.257521px;}
._f{width:10.761480px;}
._10{width:11.931600px;}
._9{width:14.308800px;}
._8{width:15.390600px;}
._e{width:16.893600px;}
._d{width:17.976000px;}
._c{width:19.287360px;}
._12{width:20.714760px;}
._19{width:21.995760px;}
._13{width:23.086080px;}
._14{width:24.288480px;}
._1d{width:25.911720px;}
._26{width:27.174240px;}
._27{width:28.256400px;}
._15{width:29.458800px;}
._16{width:30.961800px;}
._1c{width:33.126120px;}
._2c{width:34.148160px;}
._1a{width:35.891640px;}
._1b{width:37.394640px;}
._25{width:39.017880px;}
._22{width:43.166160px;}
._2b{width:47.795400px;}
._1f{width:50.019840px;}
._1e{width:51.041880px;}
._23{width:54.348480px;}
._17{width:57.895560px;}
._31{width:60.781320px;}
._28{width:71.149800px;}
._20{width:72.564840px;}
._29{width:76.231560px;}
._2a{width:78.096480px;}
._18{width:79.358400px;}
._24{width:82.123920px;}
._2d{width:83.895120px;}
._2e{width:85.435320px;}
._21{width:102.985560px;}
._2f{width:135.029520px;}
._30{width:136.833120px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:7.830000px;}
.yc9{bottom:7.920000px;}
.yc3{bottom:25.380000px;}
.yc6{bottom:25.470000px;}
.y16d{bottom:43.020000px;}
.y169{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y193{bottom:111.270000px;}
.y166{bottom:115.320000px;}
.y14d{bottom:117.300000px;}
.yde{bottom:121.350000px;}
.y183{bottom:123.240000px;}
.y188{bottom:127.290000px;}
.y1b2{bottom:128.280000px;}
.y13e{bottom:128.460000px;}
.y192{bottom:128.910000px;}
.ybd{bottom:129.270000px;}
.y91{bottom:129.540000px;}
.y165{bottom:132.870000px;}
.y57{bottom:133.320000px;}
.y14c{bottom:134.940000px;}
.ydd{bottom:138.900000px;}
.y1d5{bottom:138.990000px;}
.y182{bottom:140.790000px;}
.yfb{bottom:141.870000px;}
.y112{bottom:143.760000px;}
.y187{bottom:144.840000px;}
.y134{bottom:145.650000px;}
.y1b1{bottom:145.920000px;}
.y13d{bottom:146.100000px;}
.y191{bottom:146.460000px;}
.ybc{bottom:146.910000px;}
.y164{bottom:150.510000px;}
.y56{bottom:150.870000px;}
.y1f1{bottom:151.680000px;}
.ydc{bottom:156.450000px;}
.y1d4{bottom:156.540000px;}
.y181{bottom:158.430000px;}
.yfa{bottom:159.510000px;}
.y133{bottom:160.680000px;}
.y111{bottom:161.310000px;}
.y186{bottom:162.480000px;}
.y1b0{bottom:163.470000px;}
.y190{bottom:164.100000px;}
.ybb{bottom:164.460000px;}
.y90{bottom:165.090000px;}
.y55{bottom:168.510000px;}
.y1f0{bottom:169.320000px;}
.y14b{bottom:170.490000px;}
.y13c{bottom:172.650000px;}
.y80{bottom:173.100000px;}
.y180{bottom:175.980000px;}
.yf9{bottom:177.060000px;}
.y26{bottom:177.240000px;}
.y1af{bottom:181.020000px;}
.yba{bottom:182.100000px;}
.y1d3{bottom:183.090000px;}
.y128{bottom:186.060000px;}
.y14a{bottom:188.130000px;}
.y7f{bottom:190.650000px;}
.ydb{bottom:192.090000px;}
.y25{bottom:194.790000px;}
.y1ef{bottom:195.870000px;}
.y110{bottom:196.950000px;}
.y8f{bottom:197.310000px;}
.y185{bottom:198.030000px;}
.yb9{bottom:199.650000px;}
.y1d2{bottom:200.730000px;}
.yf8{bottom:203.610000px;}
.y54{bottom:204.060000px;}
.y132{bottom:205.590000px;}
.y149{bottom:205.680000px;}
.y1ae{bottom:207.930000px;}
.y7e{bottom:208.200000px;}
.yda{bottom:209.640000px;}
.y17f{bottom:211.530000px;}
.y24{bottom:212.340000px;}
.y1ee{bottom:213.510000px;}
.y10f{bottom:214.500000px;}
.yb8{bottom:217.200000px;}
.y1d1{bottom:218.280000px;}
.y163{bottom:221.250000px;}
.y53{bottom:221.610000px;}
.y148{bottom:223.230000px;}
.y13b{bottom:225.840000px;}
.yd9{bottom:227.190000px;}
.y17e{bottom:229.170000px;}
.y23{bottom:229.980000px;}
.y184{bottom:230.250000px;}
.y1ed{bottom:231.060000px;}
.y10e{bottom:232.050000px;}
.y18f{bottom:234.840000px;}
.y162{bottom:238.800000px;}
.y52{bottom:239.250000px;}
.y7d{bottom:243.840000px;}
.y1d0{bottom:244.830000px;}
.y1ad{bottom:245.010000px;}
.y17d{bottom:246.720000px;}
.y22{bottom:247.530000px;}
.y1fd{bottom:248.610000px;}
.y10d{bottom:249.690000px;}
.y147{bottom:249.870000px;}
.y131{bottom:250.500000px;}
.y18e{bottom:252.390000px;}
.y161{bottom:256.440000px;}
.y51{bottom:256.800000px;}
.y1ec{bottom:257.610000px;}
.y7c{bottom:261.390000px;}
.y1cf{bottom:262.470000px;}
.y1ac{bottom:262.560000px;}
.yd8{bottom:262.830000px;}
.y17c{bottom:264.360000px;}
.y21{bottom:265.170000px;}
.y10c{bottom:267.240000px;}
.y18d{bottom:269.940000px;}
.y127{bottom:274.440000px;}
.y1eb{bottom:275.250000px;}
.y7b{bottom:278.940000px;}
.yb7{bottom:279.390000px;}
.y1ce{bottom:280.020000px;}
.y1ab{bottom:280.110000px;}
.yd7{bottom:280.380000px;}
.y17b{bottom:281.910000px;}
.y10b{bottom:284.880000px;}
.y146{bottom:285.780000px;}
.y20{bottom:291.720000px;}
.y126{bottom:291.990000px;}
.y50{bottom:292.440000px;}
.y1ea{bottom:292.800000px;}
.y130{bottom:295.410000px;}
.y7a{bottom:296.580000px;}
.yb6{bottom:296.940000px;}
.y1aa{bottom:297.750000px;}
.yd6{bottom:298.020000px;}
.y1cd{bottom:306.660000px;}
.y125{bottom:309.540000px;}
.y4f{bottom:309.990000px;}
.y1fc{bottom:310.440000px;}
.y79{bottom:314.130000px;}
.yb5{bottom:314.580000px;}
.yd5{bottom:315.570000px;}
.y17a{bottom:317.460000px;}
.y1e9{bottom:319.440000px;}
.y10a{bottom:320.430000px;}
.y1cc{bottom:324.210000px;}
.y160{bottom:327.180000px;}
.y4e{bottom:327.540000px;}
.y1f{bottom:327.630000px;}
.y13a{bottom:332.130000px;}
.yd4{bottom:333.120000px;}
.y1a9{bottom:333.300000px;}
.y145{bottom:334.020000px;}
.y179{bottom:335.100000px;}
.y1fb{bottom:336.990000px;}
.y109{bottom:337.980000px;}
.y12f{bottom:340.320000px;}
.y1cb{bottom:341.760000px;}
.y15f{bottom:344.730000px;}
.y4d{bottom:345.180000px;}
.y1e8{bottom:345.990000px;}
.y78{bottom:349.770000px;}
.yb4{bottom:350.130000px;}
.yd3{bottom:350.760000px;}
.y1a8{bottom:350.940000px;}
.y178{bottom:352.650000px;}
.y1fa{bottom:354.540000px;}
.y108{bottom:355.620000px;}
.y4c{bottom:362.730000px;}
.y1e7{bottom:363.540000px;}
.y144{bottom:366.240000px;}
.y77{bottom:367.320000px;}
.yb3{bottom:367.770000px;}
.y1ca{bottom:368.400000px;}
.y1a7{bottom:368.490000px;}
.y177{bottom:370.290000px;}
.y15e{bottom:371.370000px;}
.y107{bottom:373.170000px;}
.y1e{bottom:375.870000px;}
.y124{bottom:380.370000px;}
.yf7{bottom:380.730000px;}
.y1e6{bottom:381.180000px;}
.y76{bottom:384.870000px;}
.y12e{bottom:385.230000px;}
.yb2{bottom:385.320000px;}
.y1c9{bottom:385.950000px;}
.y1a6{bottom:386.040000px;}
.yd2{bottom:386.310000px;}
.y176{bottom:387.840000px;}
.y4b{bottom:389.370000px;}
.y106{bottom:390.810000px;}
.y1d{bottom:393.780000px;}
.y123{bottom:397.920000px;}
.yf6{bottom:398.370000px;}
.y1f9{bottom:398.730000px;}
.y75{bottom:402.510000px;}
.yb1{bottom:402.870000px;}
.yd1{bottom:403.950000px;}
.y15d{bottom:406.920000px;}
.y1e5{bottom:407.730000px;}
.y1c8{bottom:412.590000px;}
.yf5{bottom:415.920000px;}
.y105{bottom:417.360000px;}
.yb0{bottom:420.510000px;}
.yd0{bottom:421.500000px;}
.y1a5{bottom:421.680000px;}
.y175{bottom:423.390000px;}
.y122{bottom:424.470000px;}
.y4a{bottom:424.920000px;}
.y1e4{bottom:425.370000px;}
.y12d{bottom:430.140000px;}
.y1c{bottom:430.860000px;}
.yf4{bottom:433.470000px;}
.y74{bottom:438.060000px;}
.ycf{bottom:439.050000px;}
.y1a4{bottom:439.230000px;}
.y174{bottom:441.030000px;}
.y15c{bottom:442.110000px;}
.y49{bottom:442.470000px;}
.y1f8{bottom:442.920000px;}
.y1c7{bottom:447.690000px;}
.y1b{bottom:448.410000px;}
.y1e3{bottom:451.920000px;}
.y104{bottom:453.270000px;}
.y73{bottom:455.700000px;}
.yaf{bottom:456.060000px;}
.yce{bottom:456.690000px;}
.y1a3{bottom:456.870000px;}
.y173{bottom:458.580000px;}
.y15b{bottom:459.660000px;}
.y48{bottom:460.110000px;}
.y1a{bottom:466.050000px;}
.yf3{bottom:469.110000px;}
.y1e2{bottom:469.470000px;}
.y72{bottom:473.280000px;}
.yae{bottom:473.730000px;}
.y1c6{bottom:474.360000px;}
.y1a2{bottom:474.450000px;}
.y12c{bottom:475.170000px;}
.y172{bottom:476.160000px;}
.y121{bottom:477.690000px;}
.ycd{bottom:483.270000px;}
.y19{bottom:483.630000px;}
.yf2{bottom:486.690000px;}
.y1e1{bottom:487.140000px;}
.y71{bottom:490.830000px;}
.yad{bottom:491.280000px;}
.y1c5{bottom:491.910000px;}
.y1a1{bottom:492.000000px;}
.y171{bottom:493.800000px;}
.y120{bottom:495.330000px;}
.y47{bottom:495.690000px;}
.y1f7{bottom:496.140000px;}
.y18{bottom:501.180000px;}
.y103{bottom:501.540000px;}
.yf1{bottom:504.330000px;}
.y70{bottom:508.470000px;}
.yac{bottom:508.830000px;}
.y15a{bottom:512.880000px;}
.y46{bottom:513.330000px;}
.y1e0{bottom:513.690000px;}
.y1c4{bottom:518.550000px;}
.y17{bottom:518.820000px;}
.ycc{bottom:519.180000px;}
.y170{bottom:520.350000px;}
.yf0{bottom:521.880000px;}
.y12b{bottom:523.860000px;}
.yab{bottom:526.470000px;}
.y1a0{bottom:527.640000px;}
.y159{bottom:530.430000px;}
.y45{bottom:530.880000px;}
.y1df{bottom:531.330000px;}
.y102{bottom:533.760000px;}
.y6f{bottom:535.020000px;}
.y1c3{bottom:536.100000px;}
.y16{bottom:536.370000px;}
.yef{bottom:539.430000px;}
.y139{bottom:544.020000px;}
.y19f{bottom:545.190000px;}
.y158{bottom:548.070000px;}
.y11f{bottom:548.430000px;}
.y15{bottom:553.920000px;}
.y16f{bottom:556.260000px;}
.y1de{bottom:557.880000px;}
.y12a{bottom:559.410000px;}
.y138{bottom:561.660000px;}
.yaa{bottom:562.020000px;}
.y1c2{bottom:562.650000px;}
.y19e{bottom:562.830000px;}
.ycb{bottom:564.810000px;}
.y11e{bottom:566.070000px;}
.y44{bottom:566.430000px;}
.y6e{bottom:570.660000px;}
.y14{bottom:571.560000px;}
.yee{bottom:575.070000px;}
.y1dd{bottom:575.430000px;}
.y137{bottom:579.210000px;}
.ya9{bottom:579.660000px;}
.y1c1{bottom:580.290000px;}
.y19d{bottom:580.380000px;}
.y11d{bottom:583.620000px;}
.y43{bottom:584.070000px;}
.y6d{bottom:588.210000px;}
.y13{bottom:589.110000px;}
.y129{bottom:591.630000px;}
.yca{bottom:592.170000px;}
.yed{bottom:592.620000px;}
.y1dc{bottom:593.070000px;}
.y136{bottom:596.760000px;}
.ya8{bottom:597.210000px;}
.y1c0{bottom:597.840000px;}
.y19c{bottom:597.930000px;}
.y157{bottom:601.260000px;}
.y42{bottom:601.620000px;}
.y16e{bottom:601.980000px;}
.y6c{bottom:605.760000px;}
.y12{bottom:606.750000px;}
.yec{bottom:610.260000px;}
.ya7{bottom:614.760000px;}
.y156{bottom:618.810000px;}
.y41{bottom:619.260000px;}
.y1db{bottom:619.620000px;}
.y6b{bottom:623.400000px;}
.y11{bottom:624.300000px;}
.y1bf{bottom:624.480000px;}
.y19b{bottom:624.840000px;}
.yeb{bottom:627.810000px;}
.ya6{bottom:632.400000px;}
.y155{bottom:636.360000px;}
.y11c{bottom:636.810000px;}
.yc8{bottom:637.080000px;}
.y8e{bottom:637.260000px;}
.y10{bottom:641.850000px;}
.y1be{bottom:642.030000px;}
.yea{bottom:645.360000px;}
.y16c{bottom:646.890000px;}
.y18c{bottom:649.950000px;}
.y11b{bottom:654.360000px;}
.y40{bottom:654.810000px;}
.y6a{bottom:658.950000px;}
.yf{bottom:659.490000px;}
.y19a{bottom:662.190000px;}
.ye9{bottom:663.000000px;}
.yc7{bottom:664.440000px;}
.y1bd{bottom:668.940000px;}
.y11a{bottom:672.000000px;}
.y3f{bottom:672.360000px;}
.y69{bottom:676.590000px;}
.ye{bottom:677.040000px;}
.y1f6{bottom:681.360000px;}
.ye8{bottom:689.550000px;}
.y3e{bottom:690.000000px;}
.yc5{bottom:691.800000px;}
.y68{bottom:694.140000px;}
.ya5{bottom:694.590000px;}
.yd{bottom:694.680000px;}
.y1da{bottom:699.000000px;}
.y154{bottom:707.190000px;}
.y3d{bottom:707.550000px;}
.y199{bottom:707.910000px;}
.y16b{bottom:709.350000px;}
.y67{bottom:711.690000px;}
.ya4{bottom:712.140000px;}
.yc{bottom:712.230000px;}
.y1d9{bottom:716.550000px;}
.y1bc{bottom:717.180000px;}
.y153{bottom:724.740000px;}
.ye7{bottom:725.190000px;}
.y8d{bottom:725.550000px;}
.ya3{bottom:729.690000px;}
.y143{bottom:734.190000px;}
.yc4{bottom:736.710000px;}
.yb{bottom:739.140000px;}
.y152{bottom:742.290000px;}
.ye6{bottom:742.740000px;}
.y3c{bottom:743.190000px;}
.y1bb{bottom:744.090000px;}
.y66{bottom:747.330000px;}
.y142{bottom:751.740000px;}
.y198{bottom:752.820000px;}
.y16a{bottom:754.260000px;}
.ye5{bottom:760.290000px;}
.y3b{bottom:760.740000px;}
.yc2{bottom:764.070000px;}
.y65{bottom:764.880000px;}
.ya2{bottom:765.330000px;}
.y141{bottom:769.290000px;}
.y1f5{bottom:769.740000px;}
.y119{bottom:777.930000px;}
.y3a{bottom:778.290000px;}
.y1ba{bottom:781.440000px;}
.y64{bottom:782.520000px;}
.ya1{bottom:782.880000px;}
.y101{bottom:786.930000px;}
.y1f4{bottom:787.290000px;}
.ya{bottom:787.380000px;}
.y118{bottom:795.480000px;}
.y39{bottom:795.930000px;}
.y197{bottom:797.730000px;}
.y168{bottom:799.170000px;}
.y63{bottom:800.070000px;}
.ya0{bottom:800.520000px;}
.y100{bottom:804.480000px;}
.y140{bottom:804.930000px;}
.yc0{bottom:808.980000px;}
.y151{bottom:813.030000px;}
.y38{bottom:813.480000px;}
.y1f3{bottom:813.930000px;}
.y62{bottom:817.620000px;}
.y9f{bottom:818.070000px;}
.y13f{bottom:822.480000px;}
.y9{bottom:823.200000px;}
.y1b9{bottom:829.770000px;}
.y150{bottom:830.670000px;}
.ye4{bottom:831.030000px;}
.y8c{bottom:831.480000px;}
.y9e{bottom:835.620000px;}
.y37{bottom:840.030000px;}
.y196{bottom:842.640000px;}
.y1b8{bottom:847.320000px;}
.ye3{bottom:848.670000px;}
.y8b{bottom:849.030000px;}
.y61{bottom:853.260000px;}
.y14f{bottom:857.220000px;}
.ybf{bottom:857.670000px;}
.y8{bottom:859.200000px;}
.y167{bottom:861.720000px;}
.y1b7{bottom:864.870000px;}
.y117{bottom:866.220000px;}
.y8a{bottom:866.670000px;}
.y60{bottom:870.810000px;}
.y9d{bottom:871.260000px;}
.yff{bottom:875.220000px;}
.y36{bottom:875.670000px;}
.y1b6{bottom:882.510000px;}
.y116{bottom:883.860000px;}
.y89{bottom:884.220000px;}
.y195{bottom:887.550000px;}
.y5f{bottom:888.450000px;}
.y9c{bottom:888.810000px;}
.yfe{bottom:892.860000px;}
.y35{bottom:893.220000px;}
.y7{bottom:898.980000px;}
.y1b5{bottom:900.060000px;}
.y115{bottom:901.410000px;}
.y88{bottom:901.860000px;}
.y5e{bottom:906.000000px;}
.y9b{bottom:906.450000px;}
.y14e{bottom:910.410000px;}
.y34{bottom:910.860000px;}
.y6{bottom:916.980000px;}
.y1b4{bottom:917.700000px;}
.y87{bottom:919.410000px;}
.y5d{bottom:923.550000px;}
.y9a{bottom:924.000000px;}
.y114{bottom:927.960000px;}
.y33{bottom:928.410000px;}
.y194{bottom:932.460000px;}
.ye2{bottom:936.960000px;}
.y1f2{bottom:937.410000px;}
.y99{bottom:941.550000px;}
.y1b3{bottom:944.520000px;}
.ybe{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y5c{bottom:950.190000px;}
.ye1{bottom:954.600000px;}
.y86{bottom:954.960000px;}
.y135{bottom:959.190000px;}
.yfd{bottom:963.600000px;}
.y32{bottom:963.960000px;}
.y85{bottom:972.600000px;}
.y18b{bottom:976.740000px;}
.y98{bottom:977.190000px;}
.yfc{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.y5b{bottom:986.100000px;}
.y4{bottom:987.630000px;}
.y84{bottom:990.150000px;}
.y97{bottom:994.740000px;}
.y113{bottom:998.790000px;}
.y30{bottom:999.150000px;}
.y18a{bottom:1003.290000px;}
.y83{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.y82{bottom:1025.370000px;}
.y96{bottom:1029.960000px;}
.y5a{bottom:1034.370000px;}
.y189{bottom:1039.230000px;}
.y81{bottom:1042.920000px;}
.y95{bottom:1047.510000px;}
.y59{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.ye0{bottom:1060.560000px;}
.y1d8{bottom:1060.920000px;}
.y94{bottom:1065.150000px;}
.y58{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.y1d7{bottom:1078.560000px;}
.ydf{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.y93{bottom:1091.700000px;}
.y1d6{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y92{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.he{height:44.100000px;}
.hf{height:44.190000px;}
.h11{height:44.220000px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h13{height:61.740000px;}
.h14{height:61.793886px;}
.h12{height:61.830000px;}
.ha{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h8{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:159.120000px;}
.w9{width:164.640000px;}
.wc{width:194.670000px;}
.w6{width:212.160000px;}
.w4{width:214.500000px;}
.w3{width:225.750000px;}
.wd{width:232.320000px;}
.wb{width:234.930000px;}
.w7{width:243.120000px;}
.we{width:256.260000px;}
.wf{width:265.680000px;}
.w8{width:298.980000px;}
.w5{width:314.010000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x17{left:111.239987px;}
.x14{left:187.409987px;}
.x5{left:193.529987px;}
.xa{left:200.999987px;}
.x2{left:211.079987px;}
.x10{left:234.210000px;}
.xd{left:281.640000px;}
.x7{left:295.230000px;}
.x15{left:301.800000px;}
.x11{left:394.050000px;}
.x8{left:510.450000px;}
.xe{left:525.480000px;}
.x16{left:558.780000px;}
.x12{left:629.790000px;}
.xb{left:635.639987px;}
.x9{left:718.889987px;}
.xf{left:723.389987px;}
.x13{left:787.559987px;}
.x4{left:796.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls17{letter-spacing:-0.033600pt;}
.ls15{letter-spacing:-0.016320pt;}
.lsb{letter-spacing:-0.013333pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls1c{letter-spacing:-0.008000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.037120pt;}
.ls13{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.093867pt;}
.ls19{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.378240pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.352533pt;}
.ws8{word-spacing:-12.883200pt;}
.wsf{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.932800pt;}
.wsb{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.850667pt;}
.ws9{word-spacing:-11.800533pt;}
.wsd{word-spacing:-11.800320pt;}
.ws10{word-spacing:-11.793920pt;}
.ws4{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.748800pt;}
.wse{word-spacing:-11.743680pt;}
.ws5{word-spacing:-11.743467pt;}
.ws11{word-spacing:-11.740480pt;}
.ws13{word-spacing:-11.723200pt;}
.ws6{word-spacing:-11.620267pt;}
.wsc{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.wsa{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._a{margin-left:-3.413120pt;}
._4{margin-left:-2.408533pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.015895pt;}
._6{width:1.921056pt;}
._2{width:3.084905pt;}
._1{width:4.050550pt;}
._7{width:4.976767pt;}
._5{width:6.092267pt;}
._b{width:7.267733pt;}
._11{width:8.228908pt;}
._f{width:9.565760pt;}
._10{width:10.605867pt;}
._9{width:12.718934pt;}
._8{width:13.680533pt;}
._e{width:15.016533pt;}
._d{width:15.978667pt;}
._c{width:17.144320pt;}
._12{width:18.413120pt;}
._19{width:19.551787pt;}
._13{width:20.520960pt;}
._14{width:21.589760pt;}
._1d{width:23.032640pt;}
._26{width:24.154880pt;}
._27{width:25.116800pt;}
._15{width:26.185600pt;}
._16{width:27.521600pt;}
._1c{width:29.445440pt;}
._2c{width:30.353920pt;}
._1a{width:31.903680pt;}
._1b{width:33.239680pt;}
._25{width:34.682560pt;}
._22{width:38.369920pt;}
._2b{width:42.484800pt;}
._1f{width:44.462080pt;}
._1e{width:45.370560pt;}
._23{width:48.309760pt;}
._17{width:51.462720pt;}
._31{width:54.027840pt;}
._28{width:63.244267pt;}
._20{width:64.502080pt;}
._29{width:67.761387pt;}
._2a{width:69.419093pt;}
._18{width:70.540800pt;}
._24{width:72.999040pt;}
._2d{width:74.573440pt;}
._2e{width:75.942507pt;}
._21{width:91.542720pt;}
._2f{width:120.026240pt;}
._30{width:121.629440pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:6.960000pt;}
.yc9{bottom:7.040000pt;}
.yc3{bottom:22.560000pt;}
.yc6{bottom:22.640000pt;}
.y16d{bottom:38.240000pt;}
.y169{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y193{bottom:98.906667pt;}
.y166{bottom:102.506667pt;}
.y14d{bottom:104.266667pt;}
.yde{bottom:107.866667pt;}
.y183{bottom:109.546667pt;}
.y188{bottom:113.146667pt;}
.y1b2{bottom:114.026667pt;}
.y13e{bottom:114.186667pt;}
.y192{bottom:114.586667pt;}
.ybd{bottom:114.906667pt;}
.y91{bottom:115.146667pt;}
.y165{bottom:118.106667pt;}
.y57{bottom:118.506667pt;}
.y14c{bottom:119.946667pt;}
.ydd{bottom:123.466667pt;}
.y1d5{bottom:123.546667pt;}
.y182{bottom:125.146667pt;}
.yfb{bottom:126.106667pt;}
.y112{bottom:127.786667pt;}
.y187{bottom:128.746667pt;}
.y134{bottom:129.466667pt;}
.y1b1{bottom:129.706667pt;}
.y13d{bottom:129.866667pt;}
.y191{bottom:130.186667pt;}
.ybc{bottom:130.586667pt;}
.y164{bottom:133.786667pt;}
.y56{bottom:134.106667pt;}
.y1f1{bottom:134.826667pt;}
.ydc{bottom:139.066667pt;}
.y1d4{bottom:139.146667pt;}
.y181{bottom:140.826667pt;}
.yfa{bottom:141.786667pt;}
.y133{bottom:142.826667pt;}
.y111{bottom:143.386667pt;}
.y186{bottom:144.426667pt;}
.y1b0{bottom:145.306667pt;}
.y190{bottom:145.866667pt;}
.ybb{bottom:146.186667pt;}
.y90{bottom:146.746667pt;}
.y55{bottom:149.786667pt;}
.y1f0{bottom:150.506667pt;}
.y14b{bottom:151.546667pt;}
.y13c{bottom:153.466667pt;}
.y80{bottom:153.866667pt;}
.y180{bottom:156.426667pt;}
.yf9{bottom:157.386667pt;}
.y26{bottom:157.546667pt;}
.y1af{bottom:160.906667pt;}
.yba{bottom:161.866667pt;}
.y1d3{bottom:162.746667pt;}
.y128{bottom:165.386667pt;}
.y14a{bottom:167.226667pt;}
.y7f{bottom:169.466667pt;}
.ydb{bottom:170.746667pt;}
.y25{bottom:173.146667pt;}
.y1ef{bottom:174.106667pt;}
.y110{bottom:175.066667pt;}
.y8f{bottom:175.386667pt;}
.y185{bottom:176.026667pt;}
.yb9{bottom:177.466667pt;}
.y1d2{bottom:178.426667pt;}
.yf8{bottom:180.986667pt;}
.y54{bottom:181.386667pt;}
.y132{bottom:182.746667pt;}
.y149{bottom:182.826667pt;}
.y1ae{bottom:184.826667pt;}
.y7e{bottom:185.066667pt;}
.yda{bottom:186.346667pt;}
.y17f{bottom:188.026667pt;}
.y24{bottom:188.746667pt;}
.y1ee{bottom:189.786667pt;}
.y10f{bottom:190.666667pt;}
.yb8{bottom:193.066667pt;}
.y1d1{bottom:194.026667pt;}
.y163{bottom:196.666667pt;}
.y53{bottom:196.986667pt;}
.y148{bottom:198.426667pt;}
.y13b{bottom:200.746667pt;}
.yd9{bottom:201.946667pt;}
.y17e{bottom:203.706667pt;}
.y23{bottom:204.426667pt;}
.y184{bottom:204.666667pt;}
.y1ed{bottom:205.386667pt;}
.y10e{bottom:206.266667pt;}
.y18f{bottom:208.746667pt;}
.y162{bottom:212.266667pt;}
.y52{bottom:212.666667pt;}
.y7d{bottom:216.746667pt;}
.y1d0{bottom:217.626667pt;}
.y1ad{bottom:217.786667pt;}
.y17d{bottom:219.306667pt;}
.y22{bottom:220.026667pt;}
.y1fd{bottom:220.986667pt;}
.y10d{bottom:221.946667pt;}
.y147{bottom:222.106667pt;}
.y131{bottom:222.666667pt;}
.y18e{bottom:224.346667pt;}
.y161{bottom:227.946667pt;}
.y51{bottom:228.266667pt;}
.y1ec{bottom:228.986667pt;}
.y7c{bottom:232.346667pt;}
.y1cf{bottom:233.306667pt;}
.y1ac{bottom:233.386667pt;}
.yd8{bottom:233.626667pt;}
.y17c{bottom:234.986667pt;}
.y21{bottom:235.706667pt;}
.y10c{bottom:237.546667pt;}
.y18d{bottom:239.946667pt;}
.y127{bottom:243.946667pt;}
.y1eb{bottom:244.666667pt;}
.y7b{bottom:247.946667pt;}
.yb7{bottom:248.346667pt;}
.y1ce{bottom:248.906667pt;}
.y1ab{bottom:248.986667pt;}
.yd7{bottom:249.226667pt;}
.y17b{bottom:250.586667pt;}
.y10b{bottom:253.226667pt;}
.y146{bottom:254.026667pt;}
.y20{bottom:259.306667pt;}
.y126{bottom:259.546667pt;}
.y50{bottom:259.946667pt;}
.y1ea{bottom:260.266667pt;}
.y130{bottom:262.586667pt;}
.y7a{bottom:263.626667pt;}
.yb6{bottom:263.946667pt;}
.y1aa{bottom:264.666667pt;}
.yd6{bottom:264.906667pt;}
.y1cd{bottom:272.586667pt;}
.y125{bottom:275.146667pt;}
.y4f{bottom:275.546667pt;}
.y1fc{bottom:275.946667pt;}
.y79{bottom:279.226667pt;}
.yb5{bottom:279.626667pt;}
.yd5{bottom:280.506667pt;}
.y17a{bottom:282.186667pt;}
.y1e9{bottom:283.946667pt;}
.y10a{bottom:284.826667pt;}
.y1cc{bottom:288.186667pt;}
.y160{bottom:290.826667pt;}
.y4e{bottom:291.146667pt;}
.y1f{bottom:291.226667pt;}
.y13a{bottom:295.226667pt;}
.yd4{bottom:296.106667pt;}
.y1a9{bottom:296.266667pt;}
.y145{bottom:296.906667pt;}
.y179{bottom:297.866667pt;}
.y1fb{bottom:299.546667pt;}
.y109{bottom:300.426667pt;}
.y12f{bottom:302.506667pt;}
.y1cb{bottom:303.786667pt;}
.y15f{bottom:306.426667pt;}
.y4d{bottom:306.826667pt;}
.y1e8{bottom:307.546667pt;}
.y78{bottom:310.906667pt;}
.yb4{bottom:311.226667pt;}
.yd3{bottom:311.786667pt;}
.y1a8{bottom:311.946667pt;}
.y178{bottom:313.466667pt;}
.y1fa{bottom:315.146667pt;}
.y108{bottom:316.106667pt;}
.y4c{bottom:322.426667pt;}
.y1e7{bottom:323.146667pt;}
.y144{bottom:325.546667pt;}
.y77{bottom:326.506667pt;}
.yb3{bottom:326.906667pt;}
.y1ca{bottom:327.466667pt;}
.y1a7{bottom:327.546667pt;}
.y177{bottom:329.146667pt;}
.y15e{bottom:330.106667pt;}
.y107{bottom:331.706667pt;}
.y1e{bottom:334.106667pt;}
.y124{bottom:338.106667pt;}
.yf7{bottom:338.426667pt;}
.y1e6{bottom:338.826667pt;}
.y76{bottom:342.106667pt;}
.y12e{bottom:342.426667pt;}
.yb2{bottom:342.506667pt;}
.y1c9{bottom:343.066667pt;}
.y1a6{bottom:343.146667pt;}
.yd2{bottom:343.386667pt;}
.y176{bottom:344.746667pt;}
.y4b{bottom:346.106667pt;}
.y106{bottom:347.386667pt;}
.y1d{bottom:350.026667pt;}
.y123{bottom:353.706667pt;}
.yf6{bottom:354.106667pt;}
.y1f9{bottom:354.426667pt;}
.y75{bottom:357.786667pt;}
.yb1{bottom:358.106667pt;}
.yd1{bottom:359.066667pt;}
.y15d{bottom:361.706667pt;}
.y1e5{bottom:362.426667pt;}
.y1c8{bottom:366.746667pt;}
.yf5{bottom:369.706667pt;}
.y105{bottom:370.986667pt;}
.yb0{bottom:373.786667pt;}
.yd0{bottom:374.666667pt;}
.y1a5{bottom:374.826667pt;}
.y175{bottom:376.346667pt;}
.y122{bottom:377.306667pt;}
.y4a{bottom:377.706667pt;}
.y1e4{bottom:378.106667pt;}
.y12d{bottom:382.346667pt;}
.y1c{bottom:382.986667pt;}
.yf4{bottom:385.306667pt;}
.y74{bottom:389.386667pt;}
.ycf{bottom:390.266667pt;}
.y1a4{bottom:390.426667pt;}
.y174{bottom:392.026667pt;}
.y15c{bottom:392.986667pt;}
.y49{bottom:393.306667pt;}
.y1f8{bottom:393.706667pt;}
.y1c7{bottom:397.946667pt;}
.y1b{bottom:398.586667pt;}
.y1e3{bottom:401.706667pt;}
.y104{bottom:402.906667pt;}
.y73{bottom:405.066667pt;}
.yaf{bottom:405.386667pt;}
.yce{bottom:405.946667pt;}
.y1a3{bottom:406.106667pt;}
.y173{bottom:407.626667pt;}
.y15b{bottom:408.586667pt;}
.y48{bottom:408.986667pt;}
.y1a{bottom:414.266667pt;}
.yf3{bottom:416.986667pt;}
.y1e2{bottom:417.306667pt;}
.y72{bottom:420.693333pt;}
.yae{bottom:421.093333pt;}
.y1c6{bottom:421.653333pt;}
.y1a2{bottom:421.733333pt;}
.y12c{bottom:422.373333pt;}
.y172{bottom:423.253333pt;}
.y121{bottom:424.613333pt;}
.ycd{bottom:429.573333pt;}
.y19{bottom:429.893333pt;}
.yf2{bottom:432.613333pt;}
.y1e1{bottom:433.013333pt;}
.y71{bottom:436.293333pt;}
.yad{bottom:436.693333pt;}
.y1c5{bottom:437.253333pt;}
.y1a1{bottom:437.333333pt;}
.y171{bottom:438.933333pt;}
.y120{bottom:440.293333pt;}
.y47{bottom:440.613333pt;}
.y1f7{bottom:441.013333pt;}
.y18{bottom:445.493333pt;}
.y103{bottom:445.813333pt;}
.yf1{bottom:448.293333pt;}
.y70{bottom:451.973333pt;}
.yac{bottom:452.293333pt;}
.y15a{bottom:455.893333pt;}
.y46{bottom:456.293333pt;}
.y1e0{bottom:456.613333pt;}
.y1c4{bottom:460.933333pt;}
.y17{bottom:461.173333pt;}
.ycc{bottom:461.493333pt;}
.y170{bottom:462.533333pt;}
.yf0{bottom:463.893333pt;}
.y12b{bottom:465.653333pt;}
.yab{bottom:467.973333pt;}
.y1a0{bottom:469.013333pt;}
.y159{bottom:471.493333pt;}
.y45{bottom:471.893333pt;}
.y1df{bottom:472.293333pt;}
.y102{bottom:474.453333pt;}
.y6f{bottom:475.573333pt;}
.y1c3{bottom:476.533333pt;}
.y16{bottom:476.773333pt;}
.yef{bottom:479.493333pt;}
.y139{bottom:483.573333pt;}
.y19f{bottom:484.613333pt;}
.y158{bottom:487.173333pt;}
.y11f{bottom:487.493333pt;}
.y15{bottom:492.373333pt;}
.y16f{bottom:494.453333pt;}
.y1de{bottom:495.893333pt;}
.y12a{bottom:497.253333pt;}
.y138{bottom:499.253333pt;}
.yaa{bottom:499.573333pt;}
.y1c2{bottom:500.133333pt;}
.y19e{bottom:500.293333pt;}
.ycb{bottom:502.053333pt;}
.y11e{bottom:503.173333pt;}
.y44{bottom:503.493333pt;}
.y6e{bottom:507.253333pt;}
.y14{bottom:508.053333pt;}
.yee{bottom:511.173333pt;}
.y1dd{bottom:511.493333pt;}
.y137{bottom:514.853333pt;}
.ya9{bottom:515.253333pt;}
.y1c1{bottom:515.813333pt;}
.y19d{bottom:515.893333pt;}
.y11d{bottom:518.773333pt;}
.y43{bottom:519.173333pt;}
.y6d{bottom:522.853333pt;}
.y13{bottom:523.653333pt;}
.y129{bottom:525.893333pt;}
.yca{bottom:526.373333pt;}
.yed{bottom:526.773333pt;}
.y1dc{bottom:527.173333pt;}
.y136{bottom:530.453333pt;}
.ya8{bottom:530.853333pt;}
.y1c0{bottom:531.413333pt;}
.y19c{bottom:531.493333pt;}
.y157{bottom:534.453333pt;}
.y42{bottom:534.773333pt;}
.y16e{bottom:535.093333pt;}
.y6c{bottom:538.453333pt;}
.y12{bottom:539.333333pt;}
.yec{bottom:542.453333pt;}
.ya7{bottom:546.453333pt;}
.y156{bottom:550.053333pt;}
.y41{bottom:550.453333pt;}
.y1db{bottom:550.773333pt;}
.y6b{bottom:554.133333pt;}
.y11{bottom:554.933333pt;}
.y1bf{bottom:555.093333pt;}
.y19b{bottom:555.413333pt;}
.yeb{bottom:558.053333pt;}
.ya6{bottom:562.133333pt;}
.y155{bottom:565.653333pt;}
.y11c{bottom:566.053333pt;}
.yc8{bottom:566.293333pt;}
.y8e{bottom:566.453333pt;}
.y10{bottom:570.533333pt;}
.y1be{bottom:570.693333pt;}
.yea{bottom:573.653333pt;}
.y16c{bottom:575.013333pt;}
.y18c{bottom:577.733333pt;}
.y11b{bottom:581.653333pt;}
.y40{bottom:582.053333pt;}
.y6a{bottom:585.733333pt;}
.yf{bottom:586.213333pt;}
.y19a{bottom:588.613333pt;}
.ye9{bottom:589.333333pt;}
.yc7{bottom:590.613333pt;}
.y1bd{bottom:594.613333pt;}
.y11a{bottom:597.333333pt;}
.y3f{bottom:597.653333pt;}
.y69{bottom:601.413333pt;}
.ye{bottom:601.813333pt;}
.y1f6{bottom:605.653333pt;}
.ye8{bottom:612.933333pt;}
.y3e{bottom:613.333333pt;}
.yc5{bottom:614.933333pt;}
.y68{bottom:617.013333pt;}
.ya5{bottom:617.413333pt;}
.yd{bottom:617.493333pt;}
.y1da{bottom:621.333333pt;}
.y154{bottom:628.613333pt;}
.y3d{bottom:628.933333pt;}
.y199{bottom:629.253333pt;}
.y16b{bottom:630.533333pt;}
.y67{bottom:632.613333pt;}
.ya4{bottom:633.013333pt;}
.yc{bottom:633.093333pt;}
.y1d9{bottom:636.933333pt;}
.y1bc{bottom:637.493333pt;}
.y153{bottom:644.213333pt;}
.ye7{bottom:644.613333pt;}
.y8d{bottom:644.933333pt;}
.ya3{bottom:648.613333pt;}
.y143{bottom:652.613333pt;}
.yc4{bottom:654.853333pt;}
.yb{bottom:657.013333pt;}
.y152{bottom:659.813333pt;}
.ye6{bottom:660.213333pt;}
.y3c{bottom:660.613333pt;}
.y1bb{bottom:661.413333pt;}
.y66{bottom:664.293333pt;}
.y142{bottom:668.213333pt;}
.y198{bottom:669.173333pt;}
.y16a{bottom:670.453333pt;}
.ye5{bottom:675.813333pt;}
.y3b{bottom:676.213333pt;}
.yc2{bottom:679.173333pt;}
.y65{bottom:679.893333pt;}
.ya2{bottom:680.293333pt;}
.y141{bottom:683.813333pt;}
.y1f5{bottom:684.213333pt;}
.y119{bottom:691.493333pt;}
.y3a{bottom:691.813333pt;}
.y1ba{bottom:694.613333pt;}
.y64{bottom:695.573333pt;}
.ya1{bottom:695.893333pt;}
.y101{bottom:699.493333pt;}
.y1f4{bottom:699.813333pt;}
.ya{bottom:699.893333pt;}
.y118{bottom:707.093333pt;}
.y39{bottom:707.493333pt;}
.y197{bottom:709.093333pt;}
.y168{bottom:710.373333pt;}
.y63{bottom:711.173333pt;}
.ya0{bottom:711.573333pt;}
.y100{bottom:715.093333pt;}
.y140{bottom:715.493333pt;}
.yc0{bottom:719.093333pt;}
.y151{bottom:722.693333pt;}
.y38{bottom:723.093333pt;}
.y1f3{bottom:723.493333pt;}
.y62{bottom:726.773333pt;}
.y9f{bottom:727.173333pt;}
.y13f{bottom:731.093333pt;}
.y9{bottom:731.733333pt;}
.y1b9{bottom:737.573333pt;}
.y150{bottom:738.373333pt;}
.ye4{bottom:738.693333pt;}
.y8c{bottom:739.093333pt;}
.y9e{bottom:742.773333pt;}
.y37{bottom:746.693333pt;}
.y196{bottom:749.013333pt;}
.y1b8{bottom:753.173333pt;}
.ye3{bottom:754.373333pt;}
.y8b{bottom:754.693333pt;}
.y61{bottom:758.453333pt;}
.y14f{bottom:761.973333pt;}
.ybf{bottom:762.373333pt;}
.y8{bottom:763.733333pt;}
.y167{bottom:765.973333pt;}
.y1b7{bottom:768.773333pt;}
.y117{bottom:769.973333pt;}
.y8a{bottom:770.373333pt;}
.y60{bottom:774.053333pt;}
.y9d{bottom:774.453333pt;}
.yff{bottom:777.973333pt;}
.y36{bottom:778.373333pt;}
.y1b6{bottom:784.453333pt;}
.y116{bottom:785.653333pt;}
.y89{bottom:785.973333pt;}
.y195{bottom:788.933333pt;}
.y5f{bottom:789.733333pt;}
.y9c{bottom:790.053333pt;}
.yfe{bottom:793.653333pt;}
.y35{bottom:793.973333pt;}
.y7{bottom:799.093333pt;}
.y1b5{bottom:800.053333pt;}
.y115{bottom:801.253333pt;}
.y88{bottom:801.653333pt;}
.y5e{bottom:805.333333pt;}
.y9b{bottom:805.733333pt;}
.y14e{bottom:809.253333pt;}
.y34{bottom:809.653333pt;}
.y6{bottom:815.093333pt;}
.y1b4{bottom:815.733333pt;}
.y87{bottom:817.253333pt;}
.y5d{bottom:820.933333pt;}
.y9a{bottom:821.333333pt;}
.y114{bottom:824.853333pt;}
.y33{bottom:825.253333pt;}
.y194{bottom:828.853333pt;}
.ye2{bottom:832.853333pt;}
.y1f2{bottom:833.253333pt;}
.y99{bottom:836.933333pt;}
.y1b3{bottom:839.573333pt;}
.ybe{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y5c{bottom:844.613333pt;}
.ye1{bottom:848.533333pt;}
.y86{bottom:848.853333pt;}
.y135{bottom:852.613333pt;}
.yfd{bottom:856.533333pt;}
.y32{bottom:856.853333pt;}
.y85{bottom:864.533333pt;}
.y18b{bottom:868.213333pt;}
.y98{bottom:868.613333pt;}
.yfc{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.y5b{bottom:876.533333pt;}
.y4{bottom:877.893333pt;}
.y84{bottom:880.133333pt;}
.y97{bottom:884.213333pt;}
.y113{bottom:887.813333pt;}
.y30{bottom:888.133333pt;}
.y18a{bottom:891.813333pt;}
.y83{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.y82{bottom:911.440000pt;}
.y96{bottom:915.520000pt;}
.y5a{bottom:919.440000pt;}
.y189{bottom:923.760000pt;}
.y81{bottom:927.040000pt;}
.y95{bottom:931.120000pt;}
.y59{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.ye0{bottom:942.720000pt;}
.y1d8{bottom:943.040000pt;}
.y94{bottom:946.800000pt;}
.y58{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.y1d7{bottom:958.720000pt;}
.ydf{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.y93{bottom:970.400000pt;}
.y1d6{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y92{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.he{height:39.200000pt;}
.hf{height:39.280000pt;}
.h11{height:39.306667pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h13{height:54.880000pt;}
.h14{height:54.927899pt;}
.h12{height:54.960000pt;}
.ha{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h8{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:141.440000pt;}
.w9{width:146.346667pt;}
.wc{width:173.040000pt;}
.w6{width:188.586667pt;}
.w4{width:190.666667pt;}
.w3{width:200.666667pt;}
.wd{width:206.506667pt;}
.wb{width:208.826667pt;}
.w7{width:216.106667pt;}
.we{width:227.786667pt;}
.wf{width:236.160000pt;}
.w8{width:265.760000pt;}
.w5{width:279.120000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x17{left:98.879988pt;}
.x14{left:166.586655pt;}
.x5{left:172.026655pt;}
.xa{left:178.666655pt;}
.x2{left:187.626655pt;}
.x10{left:208.186667pt;}
.xd{left:250.346667pt;}
.x7{left:262.426667pt;}
.x15{left:268.266667pt;}
.x11{left:350.266667pt;}
.x8{left:453.733333pt;}
.xe{left:467.093333pt;}
.x16{left:496.693333pt;}
.x12{left:559.813333pt;}
.xb{left:565.013322pt;}
.x9{left:639.013322pt;}
.xf{left:643.013322pt;}
.x13{left:700.053322pt;}
.x4{left:708.053322pt;}
.x3{left:711.413322pt;}
}




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