
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_b7cbd210ef53cf098d51e9c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6a4d3a19c52fc375db6bb9b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b85b58590b17bd052a0cbae3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e2aee1323ef04777158c7c1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d29dbb7bf590d58d135f70b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_494ac08ac5f4bd2d41459fbf.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_649d865ff68b5b8b054b5d30.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_beba07446eb78b259e883bd8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.864000px;}
.lsa{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.250800px;}
.ls6{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.181200px;}
.ls13{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.045360px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.666720px;}
.ls4{letter-spacing:0.720000px;}
.lse{letter-spacing:1.080000px;}
.ls7{letter-spacing:2.160000px;}
.ls9{letter-spacing:5.040000px;}
.ls2{letter-spacing:5.760000px;}
.ls19{letter-spacing:20.880000px;}
.ls8{letter-spacing:33.840000px;}
.ls14{letter-spacing:43.200000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-38.809200px;}
.wsc{word-spacing:-35.856000px;}
.wsa{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.wse{word-spacing:-12.329400px;}
.ws5{word-spacing:-12.060000px;}
.ws8{word-spacing:-12.014640px;}
.ws9{word-spacing:-11.878800px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:40.464000px;}
._2{margin-left:-2.676000px;}
._0{margin-left:-1.080000px;}
._1{width:1.290000px;}
._3{width:2.448000px;}
._4{width:3.624000px;}
._7{width:5.544000px;}
._8{width:6.624000px;}
._9{width:7.722000px;}
._e{width:9.678000px;}
._10{width:10.998000px;}
._c{width:12.744000px;}
._d{width:13.872000px;}
._11{width:15.552000px;}
._12{width:16.704000px;}
._23{width:19.584000px;}
._5{width:21.456000px;}
._6{width:22.482000px;}
._1b{width:23.808000px;}
._f{width:24.840000px;}
._a{width:26.424000px;}
._b{width:27.672000px;}
._1a{width:28.872000px;}
._18{width:30.528000px;}
._19{width:31.620000px;}
._13{width:32.880000px;}
._14{width:34.416000px;}
._2c{width:36.072000px;}
._31{width:37.224000px;}
._1c{width:38.232000px;}
._1d{width:39.312000px;}
._3b{width:40.392000px;}
._2b{width:41.400000px;}
._28{width:42.552000px;}
._2d{width:43.638000px;}
._15{width:44.832000px;}
._26{width:46.008000px;}
._16{width:48.024000px;}
._17{width:49.728000px;}
._22{width:50.976000px;}
._32{width:52.464000px;}
._40{width:54.432000px;}
._2e{width:55.728000px;}
._2f{width:56.742000px;}
._35{width:57.960000px;}
._34{width:58.962000px;}
._3f{width:60.552000px;}
._3c{width:62.496000px;}
._38{width:64.224000px;}
._4d{width:65.238000px;}
._3a{width:67.368000px;}
._3e{width:68.910000px;}
._3d{width:70.104000px;}
._39{width:74.016000px;}
._24{width:75.936000px;}
._29{width:77.832000px;}
._4a{width:79.560000px;}
._42{width:80.712000px;}
._4b{width:84.312000px;}
._4c{width:85.608000px;}
._59{width:88.416000px;}
._30{width:89.496000px;}
._36{width:91.440000px;}
._37{width:92.448000px;}
._41{width:93.888000px;}
._25{width:96.960000px;}
._27{width:98.304000px;}
._33{width:99.486000px;}
._21{width:100.704000px;}
._1e{width:102.168000px;}
._4e{width:103.536000px;}
._2a{width:110.808000px;}
._45{width:115.488000px;}
._46{width:116.496000px;}
._53{width:127.056000px;}
._56{width:128.760000px;}
._57{width:138.432000px;}
._52{width:141.048000px;}
._47{width:142.416000px;}
._48{width:143.640000px;}
._49{width:144.732000px;}
._43{width:156.000000px;}
._50{width:159.192000px;}
._51{width:160.488000px;}
._4f{width:172.272000px;}
._44{width:198.000000px;}
._58{width:238.296000px;}
._55{width:341.688000px;}
._54{width:483.492000px;}
._1f{width:1223.436000px;}
._20{width:1387.020000px;}
.fc4{color:transparent;}
.fc3{color:rgb(31,73,125);}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs8{font-size:95.760000px;}
.fs5{font-size:144.000000px;}
.fs4{font-size:156.240000px;}
.fs6{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:4.140000px;}
.y120{bottom:4.155000px;}
.yef{bottom:4.500000px;}
.y122{bottom:4.515000px;}
.y152{bottom:6.675000px;}
.y119{bottom:14.400000px;}
.y11c{bottom:14.760000px;}
.y13c{bottom:18.915000px;}
.y138{bottom:22.485000px;}
.y135{bottom:24.495000px;}
.yde{bottom:24.840000px;}
.y11f{bottom:24.885000px;}
.yee{bottom:25.200000px;}
.y121{bottom:25.245000px;}
.y13a{bottom:26.490000px;}
.y133{bottom:30.450000px;}
.y118{bottom:35.100000px;}
.y11b{bottom:35.460000px;}
.ydd{bottom:45.570000px;}
.yed{bottom:45.930000px;}
.y116{bottom:55.785000px;}
.y11a{bottom:56.145000px;}
.y3{bottom:58.536000px;}
.ydc{bottom:66.270000px;}
.yec{bottom:66.630000px;}
.y137{bottom:67.485000px;}
.y2{bottom:78.696000px;}
.ydb{bottom:86.970000px;}
.yeb{bottom:87.330000px;}
.yda{bottom:107.670000px;}
.yea{bottom:108.030000px;}
.y2a{bottom:113.076000px;}
.y111{bottom:116.856000px;}
.ycb{bottom:117.036000px;}
.y5d{bottom:118.116000px;}
.y150{bottom:121.536000px;}
.y178{bottom:124.956000px;}
.yd9{bottom:128.370000px;}
.ye9{bottom:128.730000px;}
.y1b6{bottom:131.976000px;}
.y1a1{bottom:132.156000px;}
.ya9{bottom:134.136000px;}
.yc3{bottom:134.496000px;}
.y40{bottom:134.856000px;}
.y73{bottom:135.216000px;}
.y29{bottom:137.016000px;}
.yfb{bottom:140.076000px;}
.y14f{bottom:145.296000px;}
.y16d{bottom:145.476000px;}
.y177{bottom:145.656000px;}
.y110{bottom:147.996000px;}
.yca{bottom:148.176000px;}
.yd8{bottom:149.070000px;}
.y5c{bottom:149.076000px;}
.ye8{bottom:149.430000px;}
.y1a0{bottom:152.850000px;}
.y145{bottom:155.370000px;}
.y131{bottom:158.070000px;}
.y28{bottom:160.770000px;}
.ya8{bottom:165.270000px;}
.yc2{bottom:165.450000px;}
.y3f{bottom:165.990000px;}
.y9d{bottom:166.170000px;}
.y16c{bottom:166.350000px;}
.y14e{bottom:169.050000px;}
.yd7{bottom:169.770000px;}
.ye7{bottom:170.130000px;}
.yfa{bottom:171.210000px;}
.y19f{bottom:173.550000px;}
.y10f{bottom:178.950000px;}
.yc9{bottom:179.130000px;}
.y5b{bottom:180.210000px;}
.y72{bottom:181.290000px;}
.y27{bottom:184.530000px;}
.y16b{bottom:187.050000px;}
.yd6{bottom:190.470000px;}
.ye6{bottom:190.830000px;}
.y14d{bottom:192.810000px;}
.y1b5{bottom:194.250000px;}
.ya7{bottom:196.230000px;}
.yc1{bottom:196.590000px;}
.y3e{bottom:196.950000px;}
.y9c{bottom:197.310000px;}
.y144{bottom:201.450000px;}
.yf9{bottom:202.170000px;}
.y130{bottom:204.150000px;}
.y19e{bottom:204.510000px;}
.y16a{bottom:207.750000px;}
.y26{bottom:208.290000px;}
.y10e{bottom:210.090000px;}
.yc8{bottom:210.270000px;}
.y5a{bottom:211.170000px;}
.ye5{bottom:211.530000px;}
.y71{bottom:212.250000px;}
.y1b4{bottom:214.950000px;}
.y14c{bottom:216.750000px;}
.y176{bottom:218.190000px;}
.y19d{bottom:225.390000px;}
.ya6{bottom:227.370000px;}
.yc0{bottom:227.550000px;}
.y3d{bottom:228.090000px;}
.y9b{bottom:228.270000px;}
.yd5{bottom:231.870000px;}
.y25{bottom:232.230000px;}
.yf8{bottom:233.310000px;}
.y1b3{bottom:235.650000px;}
.y169{bottom:238.710000px;}
.y175{bottom:238.890000px;}
.y14b{bottom:240.510000px;}
.y10d{bottom:241.050000px;}
.yc7{bottom:241.230000px;}
.y59{bottom:242.310000px;}
.y70{bottom:243.390000px;}
.y19c{bottom:246.090000px;}
.y143{bottom:247.530000px;}
.y12f{bottom:250.050000px;}
.yd4{bottom:252.570000px;}
.ye4{bottom:252.930000px;}
.y24{bottom:255.990000px;}
.y1b2{bottom:256.350000px;}
.ya5{bottom:258.330000px;}
.ybf{bottom:258.690000px;}
.y3c{bottom:259.050000px;}
.y168{bottom:259.590000px;}
.yf7{bottom:264.270000px;}
.y19b{bottom:266.790000px;}
.yc6{bottom:272.370000px;}
.y81{bottom:273.270000px;}
.ye3{bottom:273.630000px;}
.y6f{bottom:274.350000px;}
.y1b1{bottom:277.050000px;}
.y23{bottom:279.795000px;}
.y167{bottom:280.335000px;}
.y10c{bottom:286.635000px;}
.y19a{bottom:287.535000px;}
.y58{bottom:288.075000px;}
.ya4{bottom:289.515000px;}
.ybe{bottom:289.695000px;}
.y3b{bottom:290.235000px;}
.y142{bottom:293.655000px;}
.yd3{bottom:293.970000px;}
.ye2{bottom:294.330000px;}
.yf6{bottom:295.455000px;}
.y12e{bottom:296.175000px;}
.y166{bottom:301.035000px;}
.yc5{bottom:303.375000px;}
.y80{bottom:304.455000px;}
.y6e{bottom:305.535000px;}
.y1b0{bottom:308.055000px;}
.y199{bottom:308.235000px;}
.y14a{bottom:311.835000px;}
.yd2{bottom:314.715000px;}
.ye1{bottom:315.075000px;}
.y10b{bottom:318.855000px;}
.ya3{bottom:320.475000px;}
.ybd{bottom:320.835000px;}
.y165{bottom:321.735000px;}
.y22{bottom:325.515000px;}
.yf5{bottom:326.415000px;}
.y1af{bottom:328.935000px;}
.y57{bottom:334.515000px;}
.y7f{bottom:335.415000px;}
.ye0{bottom:335.775000px;}
.y9a{bottom:336.495000px;}
.y198{bottom:339.015000px;}
.y141{bottom:339.555000px;}
.y10a{bottom:341.895000px;}
.y3a{bottom:342.255000px;}
.y164{bottom:342.435000px;}
.y128{bottom:342.795000px;}
.y1ae{bottom:349.635000px;}
.y6d{bottom:351.435000px;}
.ybc{bottom:351.795000px;}
.y174{bottom:352.515000px;}
.yd1{bottom:356.115000px;}
.ydf{bottom:356.475000px;}
.yf4{bottom:357.555000px;}
.y197{bottom:359.895000px;}
.y21{bottom:361.515000px;}
.y109{bottom:362.775000px;}
.y163{bottom:363.135000px;}
.y56{bottom:365.475000px;}
.y7e{bottom:366.555000px;}
.y99{bottom:367.635000px;}
.y1d7{bottom:370.155000px;}
.y1ad{bottom:370.335000px;}
.y39{bottom:373.215000px;}
.y173{bottom:373.395000px;}
.y127{bottom:373.755000px;}
.y196{bottom:380.595000px;}
.y149{bottom:381.855000px;}
.y20{bottom:382.395000px;}
.ybb{bottom:382.935000px;}
.y108{bottom:383.475000px;}
.y162{bottom:383.835000px;}
.y140{bottom:385.635000px;}
.y12d{bottom:388.335000px;}
.yf3{bottom:388.515000px;}
.y1ac{bottom:391.035000px;}
.y172{bottom:394.095000px;}
.y55{bottom:396.435000px;}
.y6c{bottom:397.515000px;}
.y98{bottom:398.595000px;}
.y1d6{bottom:401.115000px;}
.y195{bottom:401.295000px;}
.y1f{bottom:403.095000px;}
.y107{bottom:404.175000px;}
.y161{bottom:404.535000px;}
.y126{bottom:404.895000px;}
.y1ab{bottom:411.735000px;}
.yba{bottom:413.895000px;}
.y171{bottom:414.795000px;}
.yf2{bottom:419.655000px;}
.y38{bottom:421.095000px;}
.y194{bottom:421.995000px;}
.y1e{bottom:423.795000px;}
.y106{bottom:424.875000px;}
.y160{bottom:425.235000px;}
.y54{bottom:427.575000px;}
.y148{bottom:427.755000px;}
.y6b{bottom:428.655000px;}
.y97{bottom:429.735000px;}
.y13f{bottom:431.715000px;}
.y1cd{bottom:432.255000px;}
.y1aa{bottom:432.435000px;}
.y12c{bottom:434.415000px;}
.y170{bottom:435.495000px;}
.y125{bottom:435.855000px;}
.y193{bottom:442.695000px;}
.y87{bottom:443.595000px;}
.y1d{bottom:444.495000px;}
.yb9{bottom:445.035000px;}
.y105{bottom:445.575000px;}
.y15f{bottom:445.935000px;}
.yf1{bottom:450.615000px;}
.y1a9{bottom:453.135000px;}
.y16f{bottom:456.195000px;}
.y53{bottom:458.535000px;}
.y147{bottom:458.895000px;}
.y6a{bottom:459.615000px;}
.y96{bottom:460.695000px;}
.y13e{bottom:462.675000px;}
.y192{bottom:463.395000px;}
.y1c{bottom:465.195000px;}
.y104{bottom:466.275000px;}
.y15e{bottom:466.635000px;}
.y124{bottom:466.995000px;}
.y1a8{bottom:473.835000px;}
.y86{bottom:474.735000px;}
.yb8{bottom:475.995000px;}
.y12b{bottom:480.315000px;}
.yf0{bottom:481.755000px;}
.y191{bottom:484.095000px;}
.y1b{bottom:485.895000px;}
.y103{bottom:486.975000px;}
.y16e{bottom:487.155000px;}
.y15d{bottom:487.335000px;}
.y52{bottom:489.675000px;}
.ya2{bottom:490.755000px;}
.y95{bottom:491.835000px;}
.y1cc{bottom:494.535000px;}
.yd0{bottom:498.855000px;}
.y151{bottom:500.280000px;}
.y146{bottom:500.475000px;}
.y13d{bottom:504.435000px;}
.y1a7{bottom:504.615000px;}
.y190{bottom:504.795000px;}
.y69{bottom:505.335000px;}
.y7d{bottom:505.695000px;}
.y1a{bottom:506.595000px;}
.yb7{bottom:507.135000px;}
.y102{bottom:507.675000px;}
.y15c{bottom:508.035000px;}
.y12a{bottom:511.455000px;}
.y123{bottom:512.895000px;}
.y1cb{bottom:515.235000px;}
.yc4{bottom:520.635000px;}
.ya1{bottom:521.715000px;}
.y94{bottom:522.795000px;}
.y18f{bottom:525.495000px;}
.y19{bottom:527.295000px;}
.y101{bottom:528.375000px;}
.y15b{bottom:528.735000px;}
.y11e{bottom:530.160000px;}
.y11d{bottom:530.175000px;}
.y51{bottom:535.755000px;}
.y1ca{bottom:535.935000px;}
.y7c{bottom:536.835000px;}
.y139{bottom:537.375000px;}
.yb6{bottom:538.095000px;}
.y18e{bottom:546.225000px;}
.y18{bottom:548.025000px;}
.y100{bottom:549.105000px;}
.y15a{bottom:549.465000px;}
.y68{bottom:551.805000px;}
.ya0{bottom:552.885000px;}
.y129{bottom:553.065000px;}
.y1c9{bottom:556.665000px;}
.y50{bottom:566.745000px;}
.y18d{bottom:566.925000px;}
.y7b{bottom:567.825000px;}
.y17{bottom:568.725000px;}
.y93{bottom:568.905000px;}
.yb5{bottom:569.265000px;}
.yff{bottom:569.625000px;}
.y159{bottom:570.165000px;}
.y1c8{bottom:577.365000px;}
.y67{bottom:582.765000px;}
.y9f{bottom:583.845000px;}
.y18c{bottom:587.625000px;}
.y16{bottom:589.425000px;}
.y158{bottom:590.865000px;}
.y117{bottom:592.305000px;}
.y115{bottom:592.320000px;}
.yfe{bottom:592.665000px;}
.y4f{bottom:597.885000px;}
.y1c7{bottom:598.065000px;}
.y7a{bottom:598.965000px;}
.y92{bottom:599.865000px;}
.yb4{bottom:600.225000px;}
.y18b{bottom:608.325000px;}
.y15{bottom:610.125000px;}
.y66{bottom:613.905000px;}
.y9e{bottom:614.985000px;}
.y1c6{bottom:618.765000px;}
.y4e{bottom:628.845000px;}
.y18a{bottom:629.025000px;}
.y79{bottom:629.925000px;}
.y14{bottom:630.825000px;}
.yb3{bottom:631.365000px;}
.y157{bottom:636.225000px;}
.yfd{bottom:639.105000px;}
.y1c5{bottom:639.465000px;}
.y65{bottom:644.865000px;}
.y91{bottom:645.945000px;}
.y189{bottom:649.725000px;}
.y13{bottom:651.525000px;}
.y4d{bottom:659.985000px;}
.y1c4{bottom:660.165000px;}
.y78{bottom:661.065000px;}
.yb2{bottom:662.325000px;}
.y114{bottom:664.665000px;}
.y188{bottom:670.425000px;}
.y64{bottom:676.005000px;}
.y90{bottom:677.085000px;}
.y1c3{bottom:680.865000px;}
.y12{bottom:682.125000px;}
.y156{bottom:682.305000px;}
.yfc{bottom:684.105000px;}
.y4c{bottom:690.945000px;}
.y187{bottom:691.125000px;}
.y77{bottom:692.025000px;}
.yb1{bottom:693.285000px;}
.y1c2{bottom:701.565000px;}
.y136{bottom:702.660000px;}
.y155{bottom:706.425000px;}
.y113{bottom:706.785000px;}
.y63{bottom:706.965000px;}
.y8f{bottom:708.045000px;}
.y186{bottom:711.825000px;}
.y11{bottom:721.185000px;}
.y4b{bottom:722.085000px;}
.y1c1{bottom:722.265000px;}
.y76{bottom:722.985000px;}
.yb0{bottom:724.425000px;}
.y154{bottom:730.365000px;}
.y185{bottom:732.525000px;}
.y62{bottom:738.105000px;}
.y8e{bottom:739.185000px;}
.y1c0{bottom:742.965000px;}
.y10{bottom:744.945000px;}
.y4a{bottom:753.045000px;}
.y184{bottom:753.225000px;}
.y75{bottom:754.125000px;}
.yaf{bottom:755.385000px;}
.y1d5{bottom:763.665000px;}
.y61{bottom:769.065000px;}
.y8d{bottom:770.145000px;}
.y1bf{bottom:773.745000px;}
.y183{bottom:773.925000px;}
.yf{bottom:775.545000px;}
.y112{bottom:776.985000px;}
.y153{bottom:777.525000px;}
.y37{bottom:777.885000px;}
.y132{bottom:780.780000px;}
.y49{bottom:784.185000px;}
.y1d4{bottom:784.365000px;}
.y74{bottom:785.085000px;}
.yae{bottom:786.525000px;}
.y182{bottom:794.625000px;}
.ye{bottom:799.530000px;}
.y60{bottom:800.250000px;}
.y8c{bottom:801.330000px;}
.y36{bottom:801.690000px;}
.y1be{bottom:804.930000px;}
.y1d3{bottom:805.110000px;}
.y48{bottom:815.190000px;}
.y181{bottom:815.370000px;}
.yd{bottom:816.270000px;}
.yad{bottom:817.530000px;}
.y35{bottom:825.630000px;}
.y1d2{bottom:825.810000px;}
.y5f{bottom:831.210000px;}
.y8b{bottom:832.290000px;}
.y1bd{bottom:835.890000px;}
.y180{bottom:836.070000px;}
.y47{bottom:846.330000px;}
.y1d1{bottom:846.510000px;}
.yc{bottom:846.870000px;}
.yac{bottom:848.670000px;}
.y34{bottom:849.390000px;}
.y134{bottom:850.095000px;}
.y17f{bottom:856.770000px;}
.y5e{bottom:862.350000px;}
.y8a{bottom:863.430000px;}
.y1bc{bottom:867.030000px;}
.y1a6{bottom:867.210000px;}
.yb{bottom:870.810000px;}
.yce{bottom:872.250000px;}
.y33{bottom:873.150000px;}
.y46{bottom:877.290000px;}
.y17e{bottom:877.470000px;}
.yab{bottom:879.630000px;}
.ya{bottom:887.730000px;}
.y1a5{bottom:887.910000px;}
.y85{bottom:893.310000px;}
.y32{bottom:896.910000px;}
.y1bb{bottom:897.990000px;}
.ycd{bottom:908.070000px;}
.y45{bottom:908.430000px;}
.y1a4{bottom:908.610000px;}
.y89{bottom:909.330000px;}
.y9{bottom:911.490000px;}
.y1d0{bottom:918.690000px;}
.y31{bottom:920.850000px;}
.yaa{bottom:924.090000px;}
.y84{bottom:924.450000px;}
.y1ba{bottom:929.130000px;}
.y17d{bottom:929.310000px;}
.ycc{bottom:939.030000px;}
.y44{bottom:939.390000px;}
.y1cf{bottom:939.570000px;}
.y30{bottom:944.610000px;}
.y8{bottom:950.010000px;}
.y88{bottom:955.050000px;}
.y83{bottom:955.410000px;}
.y1b9{bottom:960.090000px;}
.y1ce{bottom:960.270000px;}
.y2f{bottom:968.370000px;}
.y43{bottom:970.530000px;}
.y17c{bottom:970.710000px;}
.y7{bottom:973.770000px;}
.y1b8{bottom:980.970000px;}
.y82{bottom:986.550000px;}
.y1a3{bottom:991.410000px;}
.y2e{bottom:992.130000px;}
.y6{bottom:997.710000px;}
.y42{bottom:1001.490000px;}
.y1b7{bottom:1001.670000px;}
.y2d{bottom:1016.070000px;}
.y13b{bottom:1020.915000px;}
.y1a2{bottom:1022.190000px;}
.y17b{bottom:1022.370000px;}
.y41{bottom:1032.630000px;}
.y5{bottom:1038.750000px;}
.y2c{bottom:1039.830000px;}
.y17a{bottom:1043.070000px;}
.y4{bottom:1059.120000px;}
.y2b{bottom:1063.620000px;}
.y179{bottom:1063.800000px;}
.y1{bottom:1118.520000px;}
.hb{height:20.685000px;}
.h1c{height:22.320000px;}
.hf{height:41.395500px;}
.he{height:41.400000px;}
.h6{height:47.344922px;}
.ha{height:50.273438px;}
.h1a{height:52.245000px;}
.h16{height:57.780000px;}
.h19{height:59.805000px;}
.h12{height:62.136000px;}
.h13{height:62.145000px;}
.h1{height:65.884219px;}
.h14{height:66.442500px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h7{height:70.664062px;}
.h10{height:72.355500px;}
.h11{height:72.360000px;}
.h4{height:72.562500px;}
.h8{height:74.680922px;}
.h5{height:74.704922px;}
.h2{height:90.703125px;}
.h1d{height:93.983203px;}
.h18{height:100.822500px;}
.h17{height:141.328125px;}
.h15{height:153.341016px;}
.h1b{height:214.839844px;}
.hc{height:372.660000px;}
.hd{height:372.675000px;}
.h0{height:1188.000000px;}
.w10{width:4.860000px;}
.wb{width:58.320000px;}
.we{width:63.540000px;}
.wd{width:63.720000px;}
.wc{width:87.682500px;}
.wf{width:153.390000px;}
.w6{width:210.450000px;}
.w9{width:210.465000px;}
.w7{width:219.615000px;}
.wa{width:219.630000px;}
.w3{width:239.415000px;}
.w1{width:239.421000px;}
.w2{width:239.430000px;}
.w4{width:239.445000px;}
.w5{width:288.201000px;}
.w8{width:288.210000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:8.091000px;}
.x1a{left:10.620000px;}
.x12{left:99.945000px;}
.x1{left:108.036000px;}
.xb{left:110.916000px;}
.x8{left:121.896000px;}
.x6{left:124.776000px;}
.x1c{left:131.625000px;}
.xa{left:147.636000px;}
.x5{left:155.550000px;}
.x3{left:174.990000px;}
.xe{left:177.330000px;}
.x1e{left:195.885000px;}
.xd{left:212.430000px;}
.x4{left:227.550000px;}
.x9{left:268.230000px;}
.xf{left:302.295000px;}
.x10{left:312.915000px;}
.x1d{left:317.415000px;}
.x14{left:339.375000px;}
.xc{left:346.575000px;}
.x16{left:388.155000px;}
.x7{left:396.255000px;}
.x19{left:429.915000px;}
.x2{left:446.475000px;}
.x11{left:486.075000px;}
.x15{left:578.820000px;}
.x17{left:598.620000px;}
.x1b{left:651.540000px;}
.x21{left:806.355000px;}
.x18{left:809.970000px;}
.x20{left:811.230000px;}
.x1f{left:813.570000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.768000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.222933pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.161067pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.040320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.592640pt;}
.ls4{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.920000pt;}
.ls9{letter-spacing:4.480000pt;}
.ls2{letter-spacing:5.120000pt;}
.ls19{letter-spacing:18.560000pt;}
.ls8{letter-spacing:30.080000pt;}
.ls14{letter-spacing:38.400000pt;}
.wsb{word-spacing:-34.497067pt;}
.wsc{word-spacing:-31.872000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.wse{word-spacing:-10.959467pt;}
.ws5{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.679680pt;}
.ws9{word-spacing:-10.558933pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:35.968000pt;}
._2{margin-left:-2.378667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.146667pt;}
._3{width:2.176000pt;}
._4{width:3.221333pt;}
._7{width:4.928000pt;}
._8{width:5.888000pt;}
._9{width:6.864000pt;}
._e{width:8.602667pt;}
._10{width:9.776000pt;}
._c{width:11.328000pt;}
._d{width:12.330667pt;}
._11{width:13.824000pt;}
._12{width:14.848000pt;}
._23{width:17.408000pt;}
._5{width:19.072000pt;}
._6{width:19.984000pt;}
._1b{width:21.162667pt;}
._f{width:22.080000pt;}
._a{width:23.488000pt;}
._b{width:24.597333pt;}
._1a{width:25.664000pt;}
._18{width:27.136000pt;}
._19{width:28.106667pt;}
._13{width:29.226667pt;}
._14{width:30.592000pt;}
._2c{width:32.064000pt;}
._31{width:33.088000pt;}
._1c{width:33.984000pt;}
._1d{width:34.944000pt;}
._3b{width:35.904000pt;}
._2b{width:36.800000pt;}
._28{width:37.824000pt;}
._2d{width:38.789333pt;}
._15{width:39.850667pt;}
._26{width:40.896000pt;}
._16{width:42.688000pt;}
._17{width:44.202667pt;}
._22{width:45.312000pt;}
._32{width:46.634667pt;}
._40{width:48.384000pt;}
._2e{width:49.536000pt;}
._2f{width:50.437333pt;}
._35{width:51.520000pt;}
._34{width:52.410667pt;}
._3f{width:53.824000pt;}
._3c{width:55.552000pt;}
._38{width:57.088000pt;}
._4d{width:57.989333pt;}
._3a{width:59.882667pt;}
._3e{width:61.253333pt;}
._3d{width:62.314667pt;}
._39{width:65.792000pt;}
._24{width:67.498667pt;}
._29{width:69.184000pt;}
._4a{width:70.720000pt;}
._42{width:71.744000pt;}
._4b{width:74.944000pt;}
._4c{width:76.096000pt;}
._59{width:78.592000pt;}
._30{width:79.552000pt;}
._36{width:81.280000pt;}
._37{width:82.176000pt;}
._41{width:83.456000pt;}
._25{width:86.186667pt;}
._27{width:87.381333pt;}
._33{width:88.432000pt;}
._21{width:89.514667pt;}
._1e{width:90.816000pt;}
._4e{width:92.032000pt;}
._2a{width:98.496000pt;}
._45{width:102.656000pt;}
._46{width:103.552000pt;}
._53{width:112.938667pt;}
._56{width:114.453333pt;}
._57{width:123.050667pt;}
._52{width:125.376000pt;}
._47{width:126.592000pt;}
._48{width:127.680000pt;}
._49{width:128.650667pt;}
._43{width:138.666667pt;}
._50{width:141.504000pt;}
._51{width:142.656000pt;}
._4f{width:153.130667pt;}
._44{width:176.000000pt;}
._58{width:211.818667pt;}
._55{width:303.722667pt;}
._54{width:429.770667pt;}
._1f{width:1087.498667pt;}
._20{width:1232.906667pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs8{font-size:85.120000pt;}
.fs5{font-size:128.000000pt;}
.fs4{font-size:138.880000pt;}
.fs6{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:3.680000pt;}
.y120{bottom:3.693333pt;}
.yef{bottom:4.000000pt;}
.y122{bottom:4.013333pt;}
.y152{bottom:5.933333pt;}
.y119{bottom:12.800000pt;}
.y11c{bottom:13.120000pt;}
.y13c{bottom:16.813333pt;}
.y138{bottom:19.986667pt;}
.y135{bottom:21.773333pt;}
.yde{bottom:22.080000pt;}
.y11f{bottom:22.120000pt;}
.yee{bottom:22.400000pt;}
.y121{bottom:22.440000pt;}
.y13a{bottom:23.546667pt;}
.y133{bottom:27.066667pt;}
.y118{bottom:31.200000pt;}
.y11b{bottom:31.520000pt;}
.ydd{bottom:40.506667pt;}
.yed{bottom:40.826667pt;}
.y116{bottom:49.586667pt;}
.y11a{bottom:49.906667pt;}
.y3{bottom:52.032000pt;}
.ydc{bottom:58.906667pt;}
.yec{bottom:59.226667pt;}
.y137{bottom:59.986667pt;}
.y2{bottom:69.952000pt;}
.ydb{bottom:77.306667pt;}
.yeb{bottom:77.626667pt;}
.yda{bottom:95.706667pt;}
.yea{bottom:96.026667pt;}
.y2a{bottom:100.512000pt;}
.y111{bottom:103.872000pt;}
.ycb{bottom:104.032000pt;}
.y5d{bottom:104.992000pt;}
.y150{bottom:108.032000pt;}
.y178{bottom:111.072000pt;}
.yd9{bottom:114.106667pt;}
.ye9{bottom:114.426667pt;}
.y1b6{bottom:117.312000pt;}
.y1a1{bottom:117.472000pt;}
.ya9{bottom:119.232000pt;}
.yc3{bottom:119.552000pt;}
.y40{bottom:119.872000pt;}
.y73{bottom:120.192000pt;}
.y29{bottom:121.792000pt;}
.yfb{bottom:124.512000pt;}
.y14f{bottom:129.152000pt;}
.y16d{bottom:129.312000pt;}
.y177{bottom:129.472000pt;}
.y110{bottom:131.552000pt;}
.yca{bottom:131.712000pt;}
.yd8{bottom:132.506667pt;}
.y5c{bottom:132.512000pt;}
.ye8{bottom:132.826667pt;}
.y1a0{bottom:135.866667pt;}
.y145{bottom:138.106667pt;}
.y131{bottom:140.506667pt;}
.y28{bottom:142.906667pt;}
.ya8{bottom:146.906667pt;}
.yc2{bottom:147.066667pt;}
.y3f{bottom:147.546667pt;}
.y9d{bottom:147.706667pt;}
.y16c{bottom:147.866667pt;}
.y14e{bottom:150.266667pt;}
.yd7{bottom:150.906667pt;}
.ye7{bottom:151.226667pt;}
.yfa{bottom:152.186667pt;}
.y19f{bottom:154.266667pt;}
.y10f{bottom:159.066667pt;}
.yc9{bottom:159.226667pt;}
.y5b{bottom:160.186667pt;}
.y72{bottom:161.146667pt;}
.y27{bottom:164.026667pt;}
.y16b{bottom:166.266667pt;}
.yd6{bottom:169.306667pt;}
.ye6{bottom:169.626667pt;}
.y14d{bottom:171.386667pt;}
.y1b5{bottom:172.666667pt;}
.ya7{bottom:174.426667pt;}
.yc1{bottom:174.746667pt;}
.y3e{bottom:175.066667pt;}
.y9c{bottom:175.386667pt;}
.y144{bottom:179.066667pt;}
.yf9{bottom:179.706667pt;}
.y130{bottom:181.466667pt;}
.y19e{bottom:181.786667pt;}
.y16a{bottom:184.666667pt;}
.y26{bottom:185.146667pt;}
.y10e{bottom:186.746667pt;}
.yc8{bottom:186.906667pt;}
.y5a{bottom:187.706667pt;}
.ye5{bottom:188.026667pt;}
.y71{bottom:188.666667pt;}
.y1b4{bottom:191.066667pt;}
.y14c{bottom:192.666667pt;}
.y176{bottom:193.946667pt;}
.y19d{bottom:200.346667pt;}
.ya6{bottom:202.106667pt;}
.yc0{bottom:202.266667pt;}
.y3d{bottom:202.746667pt;}
.y9b{bottom:202.906667pt;}
.yd5{bottom:206.106667pt;}
.y25{bottom:206.426667pt;}
.yf8{bottom:207.386667pt;}
.y1b3{bottom:209.466667pt;}
.y169{bottom:212.186667pt;}
.y175{bottom:212.346667pt;}
.y14b{bottom:213.786667pt;}
.y10d{bottom:214.266667pt;}
.yc7{bottom:214.426667pt;}
.y59{bottom:215.386667pt;}
.y70{bottom:216.346667pt;}
.y19c{bottom:218.746667pt;}
.y143{bottom:220.026667pt;}
.y12f{bottom:222.266667pt;}
.yd4{bottom:224.506667pt;}
.ye4{bottom:224.826667pt;}
.y24{bottom:227.546667pt;}
.y1b2{bottom:227.866667pt;}
.ya5{bottom:229.626667pt;}
.ybf{bottom:229.946667pt;}
.y3c{bottom:230.266667pt;}
.y168{bottom:230.746667pt;}
.yf7{bottom:234.906667pt;}
.y19b{bottom:237.146667pt;}
.yc6{bottom:242.106667pt;}
.y81{bottom:242.906667pt;}
.ye3{bottom:243.226667pt;}
.y6f{bottom:243.866667pt;}
.y1b1{bottom:246.266667pt;}
.y23{bottom:248.706667pt;}
.y167{bottom:249.186667pt;}
.y10c{bottom:254.786667pt;}
.y19a{bottom:255.586667pt;}
.y58{bottom:256.066667pt;}
.ya4{bottom:257.346667pt;}
.ybe{bottom:257.506667pt;}
.y3b{bottom:257.986667pt;}
.y142{bottom:261.026667pt;}
.yd3{bottom:261.306667pt;}
.ye2{bottom:261.626667pt;}
.yf6{bottom:262.626667pt;}
.y12e{bottom:263.266667pt;}
.y166{bottom:267.586667pt;}
.yc5{bottom:269.666667pt;}
.y80{bottom:270.626667pt;}
.y6e{bottom:271.586667pt;}
.y1b0{bottom:273.826667pt;}
.y199{bottom:273.986667pt;}
.y14a{bottom:277.186667pt;}
.yd2{bottom:279.746667pt;}
.ye1{bottom:280.066667pt;}
.y10b{bottom:283.426667pt;}
.ya3{bottom:284.866667pt;}
.ybd{bottom:285.186667pt;}
.y165{bottom:285.986667pt;}
.y22{bottom:289.346667pt;}
.yf5{bottom:290.146667pt;}
.y1af{bottom:292.386667pt;}
.y57{bottom:297.346667pt;}
.y7f{bottom:298.146667pt;}
.ye0{bottom:298.466667pt;}
.y9a{bottom:299.106667pt;}
.y198{bottom:301.346667pt;}
.y141{bottom:301.826667pt;}
.y10a{bottom:303.906667pt;}
.y3a{bottom:304.226667pt;}
.y164{bottom:304.386667pt;}
.y128{bottom:304.706667pt;}
.y1ae{bottom:310.786667pt;}
.y6d{bottom:312.386667pt;}
.ybc{bottom:312.706667pt;}
.y174{bottom:313.346667pt;}
.yd1{bottom:316.546667pt;}
.ydf{bottom:316.866667pt;}
.yf4{bottom:317.826667pt;}
.y197{bottom:319.906667pt;}
.y21{bottom:321.346667pt;}
.y109{bottom:322.466667pt;}
.y163{bottom:322.786667pt;}
.y56{bottom:324.866667pt;}
.y7e{bottom:325.826667pt;}
.y99{bottom:326.786667pt;}
.y1d7{bottom:329.026667pt;}
.y1ad{bottom:329.186667pt;}
.y39{bottom:331.746667pt;}
.y173{bottom:331.906667pt;}
.y127{bottom:332.226667pt;}
.y196{bottom:338.306667pt;}
.y149{bottom:339.426667pt;}
.y20{bottom:339.906667pt;}
.ybb{bottom:340.386667pt;}
.y108{bottom:340.866667pt;}
.y162{bottom:341.186667pt;}
.y140{bottom:342.786667pt;}
.y12d{bottom:345.186667pt;}
.yf3{bottom:345.346667pt;}
.y1ac{bottom:347.586667pt;}
.y172{bottom:350.306667pt;}
.y55{bottom:352.386667pt;}
.y6c{bottom:353.346667pt;}
.y98{bottom:354.306667pt;}
.y1d6{bottom:356.546667pt;}
.y195{bottom:356.706667pt;}
.y1f{bottom:358.306667pt;}
.y107{bottom:359.266667pt;}
.y161{bottom:359.586667pt;}
.y126{bottom:359.906667pt;}
.y1ab{bottom:365.986667pt;}
.yba{bottom:367.906667pt;}
.y171{bottom:368.706667pt;}
.yf2{bottom:373.026667pt;}
.y38{bottom:374.306667pt;}
.y194{bottom:375.106667pt;}
.y1e{bottom:376.706667pt;}
.y106{bottom:377.666667pt;}
.y160{bottom:377.986667pt;}
.y54{bottom:380.066667pt;}
.y148{bottom:380.226667pt;}
.y6b{bottom:381.026667pt;}
.y97{bottom:381.986667pt;}
.y13f{bottom:383.746667pt;}
.y1cd{bottom:384.226667pt;}
.y1aa{bottom:384.386667pt;}
.y12c{bottom:386.146667pt;}
.y170{bottom:387.106667pt;}
.y125{bottom:387.426667pt;}
.y193{bottom:393.506667pt;}
.y87{bottom:394.306667pt;}
.y1d{bottom:395.106667pt;}
.yb9{bottom:395.586667pt;}
.y105{bottom:396.066667pt;}
.y15f{bottom:396.386667pt;}
.yf1{bottom:400.546667pt;}
.y1a9{bottom:402.786667pt;}
.y16f{bottom:405.506667pt;}
.y53{bottom:407.586667pt;}
.y147{bottom:407.906667pt;}
.y6a{bottom:408.546667pt;}
.y96{bottom:409.506667pt;}
.y13e{bottom:411.266667pt;}
.y192{bottom:411.906667pt;}
.y1c{bottom:413.506667pt;}
.y104{bottom:414.466667pt;}
.y15e{bottom:414.786667pt;}
.y124{bottom:415.106667pt;}
.y1a8{bottom:421.186667pt;}
.y86{bottom:421.986667pt;}
.yb8{bottom:423.106667pt;}
.y12b{bottom:426.946667pt;}
.yf0{bottom:428.226667pt;}
.y191{bottom:430.306667pt;}
.y1b{bottom:431.906667pt;}
.y103{bottom:432.866667pt;}
.y16e{bottom:433.026667pt;}
.y15d{bottom:433.186667pt;}
.y52{bottom:435.266667pt;}
.ya2{bottom:436.226667pt;}
.y95{bottom:437.186667pt;}
.y1cc{bottom:439.586667pt;}
.yd0{bottom:443.426667pt;}
.y151{bottom:444.693333pt;}
.y146{bottom:444.866667pt;}
.y13d{bottom:448.386667pt;}
.y1a7{bottom:448.546667pt;}
.y190{bottom:448.706667pt;}
.y69{bottom:449.186667pt;}
.y7d{bottom:449.506667pt;}
.y1a{bottom:450.306667pt;}
.yb7{bottom:450.786667pt;}
.y102{bottom:451.266667pt;}
.y15c{bottom:451.586667pt;}
.y12a{bottom:454.626667pt;}
.y123{bottom:455.906667pt;}
.y1cb{bottom:457.986667pt;}
.yc4{bottom:462.786667pt;}
.ya1{bottom:463.746667pt;}
.y94{bottom:464.706667pt;}
.y18f{bottom:467.106667pt;}
.y19{bottom:468.706667pt;}
.y101{bottom:469.666667pt;}
.y15b{bottom:469.986667pt;}
.y11e{bottom:471.253333pt;}
.y11d{bottom:471.266667pt;}
.y51{bottom:476.226667pt;}
.y1ca{bottom:476.386667pt;}
.y7c{bottom:477.186667pt;}
.y139{bottom:477.666667pt;}
.yb6{bottom:478.306667pt;}
.y18e{bottom:485.533333pt;}
.y18{bottom:487.133333pt;}
.y100{bottom:488.093333pt;}
.y15a{bottom:488.413333pt;}
.y68{bottom:490.493333pt;}
.ya0{bottom:491.453333pt;}
.y129{bottom:491.613333pt;}
.y1c9{bottom:494.813333pt;}
.y50{bottom:503.773333pt;}
.y18d{bottom:503.933333pt;}
.y7b{bottom:504.733333pt;}
.y17{bottom:505.533333pt;}
.y93{bottom:505.693333pt;}
.yb5{bottom:506.013333pt;}
.yff{bottom:506.333333pt;}
.y159{bottom:506.813333pt;}
.y1c8{bottom:513.213333pt;}
.y67{bottom:518.013333pt;}
.y9f{bottom:518.973333pt;}
.y18c{bottom:522.333333pt;}
.y16{bottom:523.933333pt;}
.y158{bottom:525.213333pt;}
.y117{bottom:526.493333pt;}
.y115{bottom:526.506667pt;}
.yfe{bottom:526.813333pt;}
.y4f{bottom:531.453333pt;}
.y1c7{bottom:531.613333pt;}
.y7a{bottom:532.413333pt;}
.y92{bottom:533.213333pt;}
.yb4{bottom:533.533333pt;}
.y18b{bottom:540.733333pt;}
.y15{bottom:542.333333pt;}
.y66{bottom:545.693333pt;}
.y9e{bottom:546.653333pt;}
.y1c6{bottom:550.013333pt;}
.y4e{bottom:558.973333pt;}
.y18a{bottom:559.133333pt;}
.y79{bottom:559.933333pt;}
.y14{bottom:560.733333pt;}
.yb3{bottom:561.213333pt;}
.y157{bottom:565.533333pt;}
.yfd{bottom:568.093333pt;}
.y1c5{bottom:568.413333pt;}
.y65{bottom:573.213333pt;}
.y91{bottom:574.173333pt;}
.y189{bottom:577.533333pt;}
.y13{bottom:579.133333pt;}
.y4d{bottom:586.653333pt;}
.y1c4{bottom:586.813333pt;}
.y78{bottom:587.613333pt;}
.yb2{bottom:588.733333pt;}
.y114{bottom:590.813333pt;}
.y188{bottom:595.933333pt;}
.y64{bottom:600.893333pt;}
.y90{bottom:601.853333pt;}
.y1c3{bottom:605.213333pt;}
.y12{bottom:606.333333pt;}
.y156{bottom:606.493333pt;}
.yfc{bottom:608.093333pt;}
.y4c{bottom:614.173333pt;}
.y187{bottom:614.333333pt;}
.y77{bottom:615.133333pt;}
.yb1{bottom:616.253333pt;}
.y1c2{bottom:623.613333pt;}
.y136{bottom:624.586667pt;}
.y155{bottom:627.933333pt;}
.y113{bottom:628.253333pt;}
.y63{bottom:628.413333pt;}
.y8f{bottom:629.373333pt;}
.y186{bottom:632.733333pt;}
.y11{bottom:641.053333pt;}
.y4b{bottom:641.853333pt;}
.y1c1{bottom:642.013333pt;}
.y76{bottom:642.653333pt;}
.yb0{bottom:643.933333pt;}
.y154{bottom:649.213333pt;}
.y185{bottom:651.133333pt;}
.y62{bottom:656.093333pt;}
.y8e{bottom:657.053333pt;}
.y1c0{bottom:660.413333pt;}
.y10{bottom:662.173333pt;}
.y4a{bottom:669.373333pt;}
.y184{bottom:669.533333pt;}
.y75{bottom:670.333333pt;}
.yaf{bottom:671.453333pt;}
.y1d5{bottom:678.813333pt;}
.y61{bottom:683.613333pt;}
.y8d{bottom:684.573333pt;}
.y1bf{bottom:687.773333pt;}
.y183{bottom:687.933333pt;}
.yf{bottom:689.373333pt;}
.y112{bottom:690.653333pt;}
.y153{bottom:691.133333pt;}
.y37{bottom:691.453333pt;}
.y132{bottom:694.026667pt;}
.y49{bottom:697.053333pt;}
.y1d4{bottom:697.213333pt;}
.y74{bottom:697.853333pt;}
.yae{bottom:699.133333pt;}
.y182{bottom:706.333333pt;}
.ye{bottom:710.693333pt;}
.y60{bottom:711.333333pt;}
.y8c{bottom:712.293333pt;}
.y36{bottom:712.613333pt;}
.y1be{bottom:715.493333pt;}
.y1d3{bottom:715.653333pt;}
.y48{bottom:724.613333pt;}
.y181{bottom:724.773333pt;}
.yd{bottom:725.573333pt;}
.yad{bottom:726.693333pt;}
.y35{bottom:733.893333pt;}
.y1d2{bottom:734.053333pt;}
.y5f{bottom:738.853333pt;}
.y8b{bottom:739.813333pt;}
.y1bd{bottom:743.013333pt;}
.y180{bottom:743.173333pt;}
.y47{bottom:752.293333pt;}
.y1d1{bottom:752.453333pt;}
.yc{bottom:752.773333pt;}
.yac{bottom:754.373333pt;}
.y34{bottom:755.013333pt;}
.y134{bottom:755.640000pt;}
.y17f{bottom:761.573333pt;}
.y5e{bottom:766.533333pt;}
.y8a{bottom:767.493333pt;}
.y1bc{bottom:770.693333pt;}
.y1a6{bottom:770.853333pt;}
.yb{bottom:774.053333pt;}
.yce{bottom:775.333333pt;}
.y33{bottom:776.133333pt;}
.y46{bottom:779.813333pt;}
.y17e{bottom:779.973333pt;}
.yab{bottom:781.893333pt;}
.ya{bottom:789.093333pt;}
.y1a5{bottom:789.253333pt;}
.y85{bottom:794.053333pt;}
.y32{bottom:797.253333pt;}
.y1bb{bottom:798.213333pt;}
.ycd{bottom:807.173333pt;}
.y45{bottom:807.493333pt;}
.y1a4{bottom:807.653333pt;}
.y89{bottom:808.293333pt;}
.y9{bottom:810.213333pt;}
.y1d0{bottom:816.613333pt;}
.y31{bottom:818.533333pt;}
.yaa{bottom:821.413333pt;}
.y84{bottom:821.733333pt;}
.y1ba{bottom:825.893333pt;}
.y17d{bottom:826.053333pt;}
.ycc{bottom:834.693333pt;}
.y44{bottom:835.013333pt;}
.y1cf{bottom:835.173333pt;}
.y30{bottom:839.653333pt;}
.y8{bottom:844.453333pt;}
.y88{bottom:848.933333pt;}
.y83{bottom:849.253333pt;}
.y1b9{bottom:853.413333pt;}
.y1ce{bottom:853.573333pt;}
.y2f{bottom:860.773333pt;}
.y43{bottom:862.693333pt;}
.y17c{bottom:862.853333pt;}
.y7{bottom:865.573333pt;}
.y1b8{bottom:871.973333pt;}
.y82{bottom:876.933333pt;}
.y1a3{bottom:881.253333pt;}
.y2e{bottom:881.893333pt;}
.y6{bottom:886.853333pt;}
.y42{bottom:890.213333pt;}
.y1b7{bottom:890.373333pt;}
.y2d{bottom:903.173333pt;}
.y13b{bottom:907.480000pt;}
.y1a2{bottom:908.613333pt;}
.y17b{bottom:908.773333pt;}
.y41{bottom:917.893333pt;}
.y5{bottom:923.333333pt;}
.y2c{bottom:924.293333pt;}
.y17a{bottom:927.173333pt;}
.y4{bottom:941.440000pt;}
.y2b{bottom:945.440000pt;}
.y179{bottom:945.600000pt;}
.y1{bottom:994.240000pt;}
.hb{height:18.386667pt;}
.h1c{height:19.840000pt;}
.hf{height:36.796000pt;}
.he{height:36.800000pt;}
.h6{height:42.084375pt;}
.ha{height:44.687500pt;}
.h1a{height:46.440000pt;}
.h16{height:51.360000pt;}
.h19{height:53.160000pt;}
.h12{height:55.232000pt;}
.h13{height:55.240000pt;}
.h1{height:58.563750pt;}
.h14{height:59.060000pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h7{height:62.812500pt;}
.h10{height:64.316000pt;}
.h11{height:64.320000pt;}
.h4{height:64.500000pt;}
.h8{height:66.383042pt;}
.h5{height:66.404375pt;}
.h2{height:80.625000pt;}
.h1d{height:83.540625pt;}
.h18{height:89.620000pt;}
.h17{height:125.625000pt;}
.h15{height:136.303125pt;}
.h1b{height:190.968750pt;}
.hc{height:331.253333pt;}
.hd{height:331.266667pt;}
.h0{height:1056.000000pt;}
.w10{width:4.320000pt;}
.wb{width:51.840000pt;}
.we{width:56.480000pt;}
.wd{width:56.640000pt;}
.wc{width:77.940000pt;}
.wf{width:136.346667pt;}
.w6{width:187.066667pt;}
.w9{width:187.080000pt;}
.w7{width:195.213333pt;}
.wa{width:195.226667pt;}
.w3{width:212.813333pt;}
.w1{width:212.818667pt;}
.w2{width:212.826667pt;}
.w4{width:212.840000pt;}
.w5{width:256.178667pt;}
.w8{width:256.186667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.192000pt;}
.x1a{left:9.440000pt;}
.x12{left:88.840000pt;}
.x1{left:96.032000pt;}
.xb{left:98.592000pt;}
.x8{left:108.352000pt;}
.x6{left:110.912000pt;}
.x1c{left:117.000000pt;}
.xa{left:131.232000pt;}
.x5{left:138.266667pt;}
.x3{left:155.546667pt;}
.xe{left:157.626667pt;}
.x1e{left:174.120000pt;}
.xd{left:188.826667pt;}
.x4{left:202.266667pt;}
.x9{left:238.426667pt;}
.xf{left:268.706667pt;}
.x10{left:278.146667pt;}
.x1d{left:282.146667pt;}
.x14{left:301.666667pt;}
.xc{left:308.066667pt;}
.x16{left:345.026667pt;}
.x7{left:352.226667pt;}
.x19{left:382.146667pt;}
.x2{left:396.866667pt;}
.x11{left:432.066667pt;}
.x15{left:514.506667pt;}
.x17{left:532.106667pt;}
.x1b{left:579.146667pt;}
.x21{left:716.760000pt;}
.x18{left:719.973333pt;}
.x20{left:721.093333pt;}
.x1f{left:723.173333pt;}
}




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