
    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_9fdbc6f8657c15f84a483b18.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_06516449087b3e41bf9a86fe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_6f1d249605c86dedd767f04c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_59ef86fbe121e9c349587b5a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3c267fce3a0f38fab0012b52.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7815e3381e1728edc9b81016.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_13173df671e0424157610d46.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c97012df31c62acf639f8665.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_230cd3dfe2eb94409b082e28.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_da00100aa1c5837154b8cc03.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsa{letter-spacing:-2.730000px;}
.ls5{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.305400px;}
.ls2{letter-spacing:-0.230400px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:39.305280px;}
.ls6{letter-spacing:41.736000px;}
.lsb{letter-spacing:42.785280px;}
.ls10{letter-spacing:42.905280px;}
.ls12{letter-spacing:64.776000px;}
.lsd{letter-spacing:67.241280px;}
.lse{letter-spacing:67.265280px;}
.ls13{letter-spacing:195.960000px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws1{word-spacing:-27.000000px;}
.wsb{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.830000px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-9.000000px;}
.ws6{word-spacing:-0.066240px;}
.ws7{word-spacing:0.000000px;}
._43{margin-left:-6.223680px;}
._5{margin-left:-5.112000px;}
._d{margin-left:-3.324000px;}
._4{margin-left:-2.184000px;}
._6{margin-left:-1.116000px;}
._3{width:1.068000px;}
._9{width:2.448000px;}
._18{width:3.908160px;}
._15{width:5.696640px;}
._16{width:6.708000px;}
._c{width:7.852320px;}
._a{width:9.339840px;}
._b{width:10.477440px;}
._e{width:12.320640px;}
._12{width:13.739040px;}
._11{width:15.026400px;}
._1{width:16.104960px;}
._2{width:17.722080px;}
._0{width:18.737280px;}
._17{width:19.872000px;}
._2b{width:21.052320px;}
._1a{width:22.190400px;}
._1d{width:24.177600px;}
._21{width:25.237440px;}
._3b{width:27.092160px;}
._24{width:28.218240px;}
._13{width:29.344320px;}
._14{width:31.187040px;}
._f{width:32.788800px;}
._10{width:34.035360px;}
._2a{width:35.251680px;}
._1c{width:36.564480px;}
._1b{width:38.521920px;}
._19{width:39.611520px;}
._2d{width:40.737600px;}
._8{width:42.708000px;}
._7{width:43.812000px;}
._47{width:44.865120px;}
._39{width:45.904320px;}
._2c{width:47.030400px;}
._2f{width:49.216320px;}
._3e{width:50.739840px;}
._23{width:52.130880px;}
._20{width:54.051840px;}
._33{width:55.244160px;}
._1f{width:56.304000px;}
._49{width:57.695040px;}
._32{width:59.019840px;}
._36{width:60.609600px;}
._30{width:61.669440px;}
._37{width:63.325440px;}
._22{width:65.038080px;}
._29{width:66.571200px;}
._4c{width:68.160960px;}
._3f{width:69.220800px;}
._3c{width:71.605440px;}
._3d{width:72.887520px;}
._25{width:74.453760px;}
._26{width:75.766560px;}
._4f{width:76.983840px;}
._38{width:78.405120px;}
._44{width:79.686720px;}
._45{width:81.605760px;}
._34{width:83.263680px;}
._35{width:84.313440px;}
._3a{width:87.691680px;}
._4b{width:89.291520px;}
._42{width:90.351360px;}
._31{width:91.543680px;}
._41{width:92.868480px;}
._40{width:94.514400px;}
._53{width:96.511680px;}
._4a{width:99.161280px;}
._4d{width:101.347200px;}
._48{width:102.469440px;}
._2e{width:104.195520px;}
._50{width:105.775200px;}
._4e{width:112.332960px;}
._1e{width:121.749120px;}
._27{width:128.836800px;}
._28{width:130.416480px;}
._46{width:139.037760px;}
._51{width:209.715840px;}
._52{width:211.171200px;}
._54{width:273.372480px;}
._55{width:738.036000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:3.600000px;}
.ya4{bottom:3.780000px;}
.y142{bottom:3.960000px;}
.yc2{bottom:5.760000px;}
.ybe{bottom:5.940000px;}
.y13f{bottom:6.120000px;}
.yfe{bottom:6.300000px;}
.yc0{bottom:6.480000px;}
.ybc{bottom:8.100000px;}
.y13b{bottom:8.640000px;}
.y13d{bottom:13.320000px;}
.yfb{bottom:14.400000px;}
.yc4{bottom:22.680000px;}
.yc7{bottom:22.725000px;}
.y141{bottom:22.860000px;}
.yfd{bottom:25.380000px;}
.ybb{bottom:27.180000px;}
.yfa{bottom:36.180000px;}
.y184{bottom:37.980000px;}
.y2{bottom:58.356000px;}
.y1{bottom:78.516000px;}
.y79{bottom:111.996000px;}
.y122{bottom:112.896000px;}
.y9c{bottom:114.876000px;}
.y5d{bottom:115.956000px;}
.y2a{bottom:119.196000px;}
.ye3{bottom:120.276000px;}
.y1a2{bottom:121.176000px;}
.y158{bottom:121.716000px;}
.yf6{bottom:124.956000px;}
.y139{bottom:127.116000px;}
.y121{bottom:131.796000px;}
.y1c4{bottom:132.516000px;}
.y78{bottom:133.776000px;}
.y9b{bottom:133.956000px;}
.y5c{bottom:134.856000px;}
.y29{bottom:138.096000px;}
.y1a1{bottom:140.076000px;}
.y157{bottom:140.796000px;}
.ye2{bottom:142.056000px;}
.y138{bottom:146.016000px;}
.yf5{bottom:146.736000px;}
.ycc{bottom:147.276000px;}
.y120{bottom:150.690000px;}
.y1c3{bottom:151.410000px;}
.y77{bottom:152.850000px;}
.y5b{bottom:153.750000px;}
.y28{bottom:157.170000px;}
.y1a0{bottom:159.150000px;}
.y156{bottom:159.690000px;}
.ye1{bottom:163.830000px;}
.y137{bottom:165.090000px;}
.yf4{bottom:165.990000px;}
.ycb{bottom:166.350000px;}
.y11f{bottom:169.770000px;}
.y1c2{bottom:170.490000px;}
.y76{bottom:171.930000px;}
.y5a{bottom:172.830000px;}
.y27{bottom:176.070000px;}
.y19f{bottom:178.050000px;}
.y155{bottom:178.590000px;}
.yca{bottom:181.650000px;}
.y136{bottom:183.990000px;}
.yf3{bottom:184.890000px;}
.ye0{bottom:185.790000px;}
.y11e{bottom:188.670000px;}
.y1c1{bottom:189.390000px;}
.y75{bottom:190.830000px;}
.y59{bottom:191.730000px;}
.y26{bottom:194.970000px;}
.y19e{bottom:196.950000px;}
.y154{bottom:197.670000px;}
.yc9{bottom:202.710000px;}
.y135{bottom:203.070000px;}
.yf2{bottom:203.970000px;}
.ydf{bottom:207.570000px;}
.y11d{bottom:207.750000px;}
.y1c0{bottom:208.470000px;}
.y74{bottom:209.730000px;}
.y58{bottom:210.810000px;}
.y25{bottom:214.050000px;}
.y19d{bottom:216.030000px;}
.y153{bottom:216.570000px;}
.y134{bottom:221.970000px;}
.yf1{bottom:222.870000px;}
.y11c{bottom:223.050000px;}
.y1bf{bottom:227.370000px;}
.y73{bottom:228.810000px;}
.yde{bottom:229.350000px;}
.y57{bottom:229.710000px;}
.y24{bottom:232.950000px;}
.y19c{bottom:234.930000px;}
.y152{bottom:235.650000px;}
.yc8{bottom:240.690000px;}
.y133{bottom:240.870000px;}
.yf0{bottom:241.950000px;}
.y1be{bottom:246.450000px;}
.y72{bottom:247.710000px;}
.y56{bottom:248.610000px;}
.ydd{bottom:251.130000px;}
.y19b{bottom:254.010000px;}
.y151{bottom:254.550000px;}
.y132{bottom:259.950000px;}
.yef{bottom:260.850000px;}
.y1bd{bottom:265.350000px;}
.y71{bottom:266.790000px;}
.y55{bottom:267.690000px;}
.y23{bottom:270.030000px;}
.ydc{bottom:272.910000px;}
.y150{bottom:273.450000px;}
.y131{bottom:275.250000px;}
.yc6{bottom:278.670000px;}
.yee{bottom:279.750000px;}
.y1bc{bottom:284.250000px;}
.y70{bottom:285.690000px;}
.y54{bottom:286.590000px;}
.y22{bottom:288.930000px;}
.y19a{bottom:291.810000px;}
.y14f{bottom:292.530000px;}
.ydb{bottom:294.870000px;}
.yed{bottom:298.830000px;}
.y182{bottom:299.955000px;}
.y1bb{bottom:303.375000px;}
.y6f{bottom:304.635000px;}
.y53{bottom:305.715000px;}
.y21{bottom:307.875000px;}
.y199{bottom:310.935000px;}
.y14e{bottom:311.475000px;}
.yc5{bottom:316.695000px;}
.yec{bottom:317.775000px;}
.y181{bottom:318.855000px;}
.y161{bottom:321.735000px;}
.y6e{bottom:323.715000px;}
.y52{bottom:324.615000px;}
.y1ba{bottom:324.975000px;}
.y20{bottom:326.955000px;}
.y14d{bottom:329.835000px;}
.yeb{bottom:336.855000px;}
.y180{bottom:337.935000px;}
.yda{bottom:338.475000px;}
.y160{bottom:340.815000px;}
.y6d{bottom:342.615000px;}
.y51{bottom:343.695000px;}
.y1f{bottom:345.855000px;}
.y14c{bottom:346.035000px;}
.y1b9{bottom:346.755000px;}
.y198{bottom:348.915000px;}
.yc3{bottom:354.675000px;}
.yea{bottom:355.755000px;}
.y17f{bottom:356.835000px;}
.y15f{bottom:359.715000px;}
.yd9{bottom:360.255000px;}
.y6c{bottom:361.695000px;}
.y50{bottom:362.595000px;}
.y1e{bottom:364.935000px;}
.y197{bottom:367.815000px;}
.y1b8{bottom:368.535000px;}
.ye9{bottom:374.655000px;}
.y17e{bottom:375.915000px;}
.y15e{bottom:378.795000px;}
.y6b{bottom:380.595000px;}
.y4f{bottom:381.495000px;}
.yd8{bottom:382.215000px;}
.y1d{bottom:383.835000px;}
.y14b{bottom:384.015000px;}
.y196{bottom:386.895000px;}
.y1b7{bottom:387.795000px;}
.yc1{bottom:392.655000px;}
.ye8{bottom:393.735000px;}
.y17d{bottom:394.815000px;}
.y11b{bottom:396.795000px;}
.y15d{bottom:397.695000px;}
.y6a{bottom:399.495000px;}
.y4e{bottom:400.575000px;}
.y14a{bottom:402.375000px;}
.y1c{bottom:402.915000px;}
.yd7{bottom:403.995000px;}
.y195{bottom:405.795000px;}
.y1b6{bottom:406.695000px;}
.ye7{bottom:412.635000px;}
.ybf{bottom:413.715000px;}
.y17c{bottom:413.895000px;}
.y11a{bottom:415.695000px;}
.y15c{bottom:416.595000px;}
.y69{bottom:418.575000px;}
.y4d{bottom:419.475000px;}
.y1b{bottom:421.815000px;}
.y194{bottom:424.695000px;}
.yd6{bottom:425.775000px;}
.ye6{bottom:431.715000px;}
.y17b{bottom:432.795000px;}
.y119{bottom:434.595000px;}
.yba{bottom:435.495000px;}
.y15b{bottom:435.675000px;}
.y68{bottom:437.475000px;}
.y4c{bottom:438.555000px;}
.y9a{bottom:440.175000px;}
.y1a{bottom:440.715000px;}
.y193{bottom:443.775000px;}
.y1b5{bottom:444.675000px;}
.yd5{bottom:447.555000px;}
.ye5{bottom:450.615000px;}
.y17a{bottom:451.695000px;}
.y118{bottom:453.675000px;}
.y15a{bottom:454.575000px;}
.y67{bottom:456.555000px;}
.ybd{bottom:456.735000px;}
.y4b{bottom:457.455000px;}
.y99{bottom:461.955000px;}
.y192{bottom:462.675000px;}
.y1b4{bottom:463.575000px;}
.yd4{bottom:469.335000px;}
.ye4{bottom:469.515000px;}
.y179{bottom:470.775000px;}
.y117{bottom:472.575000px;}
.y66{bottom:475.455000px;}
.y159{bottom:476.175000px;}
.y4a{bottom:476.355000px;}
.y19{bottom:477.795000px;}
.y98{bottom:481.215000px;}
.yb9{bottom:481.575000px;}
.y191{bottom:481.755000px;}
.y1b3{bottom:482.655000px;}
.y178{bottom:489.675000px;}
.yd3{bottom:491.295000px;}
.y116{bottom:491.655000px;}
.y65{bottom:494.355000px;}
.y49{bottom:495.435000px;}
.y97{bottom:500.115000px;}
.yb8{bottom:500.655000px;}
.y130{bottom:501.015000px;}
.y1b2{bottom:501.555000px;}
.y177{bottom:508.755000px;}
.y115{bottom:510.555000px;}
.yd2{bottom:513.075000px;}
.y48{bottom:514.335000px;}
.y64{bottom:516.135000px;}
.y96{bottom:519.195000px;}
.yb7{bottom:519.555000px;}
.y12f{bottom:519.915000px;}
.y1b1{bottom:520.635000px;}
.y18{bottom:523.695000px;}
.y176{bottom:527.655000px;}
.y114{bottom:529.455000px;}
.y47{bottom:533.415000px;}
.yd1{bottom:534.855000px;}
.y63{bottom:537.915000px;}
.y95{bottom:538.095000px;}
.yb6{bottom:538.455000px;}
.y190{bottom:538.635000px;}
.y12e{bottom:538.995000px;}
.y1b0{bottom:539.535000px;}
.y175{bottom:546.555000px;}
.y113{bottom:548.535000px;}
.y46{bottom:552.315000px;}
.yd0{bottom:553.935000px;}
.y94{bottom:557.025000px;}
.yb5{bottom:557.565000px;}
.y12d{bottom:557.925000px;}
.y1af{bottom:558.465000px;}
.y62{bottom:559.725000px;}
.y17{bottom:560.805000px;}
.y174{bottom:565.665000px;}
.y112{bottom:567.465000px;}
.y45{bottom:571.245000px;}
.ycf{bottom:573.045000px;}
.y93{bottom:576.105000px;}
.yb4{bottom:576.465000px;}
.y18f{bottom:576.645000px;}
.y12c{bottom:577.005000px;}
.y1ae{bottom:577.545000px;}
.y16{bottom:579.705000px;}
.y61{bottom:581.505000px;}
.y111{bottom:586.545000px;}
.y173{bottom:587.265000px;}
.y44{bottom:590.325000px;}
.yce{bottom:591.945000px;}
.y92{bottom:595.005000px;}
.yb3{bottom:595.545000px;}
.y12b{bottom:595.905000px;}
.y1ad{bottom:596.445000px;}
.y15{bottom:598.605000px;}
.y60{bottom:603.465000px;}
.y110{bottom:605.445000px;}
.y172{bottom:606.345000px;}
.ycd{bottom:607.245000px;}
.y43{bottom:609.225000px;}
.y91{bottom:614.085000px;}
.yb2{bottom:614.445000px;}
.y12a{bottom:614.805000px;}
.y1ac{bottom:615.525000px;}
.y149{bottom:617.505000px;}
.y14{bottom:617.685000px;}
.y10f{bottom:624.525000px;}
.y5f{bottom:625.245000px;}
.y171{bottom:625.425000px;}
.y42{bottom:628.305000px;}
.y90{bottom:632.985000px;}
.yb1{bottom:633.345000px;}
.y18e{bottom:633.525000px;}
.y129{bottom:633.885000px;}
.y1ab{bottom:634.425000px;}
.y13{bottom:636.585000px;}
.y10e{bottom:643.425000px;}
.y170{bottom:644.325000px;}
.y5e{bottom:647.025000px;}
.y41{bottom:647.205000px;}
.y8f{bottom:651.885000px;}
.yb0{bottom:652.425000px;}
.y128{bottom:652.785000px;}
.y1aa{bottom:653.505000px;}
.y1d1{bottom:653.865000px;}
.y18d{bottom:655.125000px;}
.y148{bottom:655.485000px;}
.y12{bottom:655.665000px;}
.y10d{bottom:662.325000px;}
.y16f{bottom:663.405000px;}
.y40{bottom:666.105000px;}
.y8e{bottom:670.965000px;}
.yaf{bottom:671.325000px;}
.y127{bottom:671.865000px;}
.y1a9{bottom:672.405000px;}
.y11{bottom:674.565000px;}
.y18c{bottom:676.905000px;}
.y10c{bottom:681.405000px;}
.y16e{bottom:682.305000px;}
.y3f{bottom:685.185000px;}
.y8d{bottom:689.865000px;}
.yae{bottom:690.405000px;}
.y126{bottom:690.765000px;}
.y1a8{bottom:691.305000px;}
.y10{bottom:693.465000px;}
.y18b{bottom:698.685000px;}
.y10b{bottom:700.305000px;}
.y16d{bottom:701.205000px;}
.y3e{bottom:704.085000px;}
.y8c{bottom:708.945000px;}
.yad{bottom:709.305000px;}
.y125{bottom:709.665000px;}
.y1a7{bottom:710.385000px;}
.y147{bottom:712.365000px;}
.yf{bottom:712.545000px;}
.y1d0{bottom:715.245000px;}
.y10a{bottom:719.385000px;}
.y16c{bottom:720.285000px;}
.y18a{bottom:720.645000px;}
.y3d{bottom:723.165000px;}
.y8b{bottom:727.845000px;}
.yac{bottom:728.205000px;}
.y124{bottom:728.745000px;}
.y1a6{bottom:729.285000px;}
.ye{bottom:731.445000px;}
.y1cf{bottom:737.205000px;}
.y109{bottom:738.285000px;}
.y16b{bottom:739.185000px;}
.y3c{bottom:742.065000px;}
.y189{bottom:742.425000px;}
.y123{bottom:744.045000px;}
.y8a{bottom:746.745000px;}
.yab{bottom:747.285000px;}
.y1a5{bottom:748.365000px;}
.y146{bottom:750.345000px;}
.yd{bottom:750.525000px;}
.y108{bottom:757.185000px;}
.y16a{bottom:758.265000px;}
.y1ce{bottom:758.985000px;}
.y3b{bottom:760.965000px;}
.y188{bottom:764.205000px;}
.y89{bottom:765.825000px;}
.yaa{bottom:766.185000px;}
.y1a4{bottom:767.265000px;}
.y145{bottom:769.425000px;}
.y107{bottom:776.265000px;}
.y169{bottom:777.165000px;}
.y3a{bottom:780.045000px;}
.y1cd{bottom:780.765000px;}
.yc{bottom:782.745000px;}
.y88{bottom:784.725000px;}
.ya9{bottom:785.265000px;}
.y187{bottom:785.985000px;}
.y1a3{bottom:786.165000px;}
.y144{bottom:788.325000px;}
.y106{bottom:795.165000px;}
.y168{bottom:796.065000px;}
.y39{bottom:798.945000px;}
.y1cc{bottom:802.545000px;}
.y87{bottom:803.805000px;}
.ya8{bottom:804.165000px;}
.y186{bottom:805.245000px;}
.y143{bottom:807.225000px;}
.y105{bottom:814.290000px;}
.yb{bottom:815.190000px;}
.y38{bottom:818.070000px;}
.ya7{bottom:819.510000px;}
.y140{bottom:822.570000px;}
.y86{bottom:822.750000px;}
.y185{bottom:824.190000px;}
.y1cb{bottom:824.550000px;}
.y104{bottom:829.590000px;}
.ya{bottom:833.730000px;}
.y167{bottom:834.090000px;}
.y37{bottom:836.970000px;}
.ya6{bottom:838.410000px;}
.y183{bottom:839.490000px;}
.y85{bottom:841.650000px;}
.y1ca{bottom:846.330000px;}
.y103{bottom:851.370000px;}
.y166{bottom:853.170000px;}
.y9{bottom:853.710000px;}
.y36{bottom:856.050000px;}
.ya5{bottom:857.490000px;}
.y84{bottom:860.730000px;}
.y13e{bottom:860.910000px;}
.y1c9{bottom:868.110000px;}
.y165{bottom:872.070000px;}
.y102{bottom:873.150000px;}
.y35{bottom:874.950000px;}
.ya3{bottom:876.390000px;}
.y83{bottom:879.630000px;}
.y13c{bottom:884.850000px;}
.y1c8{bottom:889.890000px;}
.y164{bottom:891.150000px;}
.y34{bottom:893.850000px;}
.y8{bottom:894.390000px;}
.y101{bottom:894.930000px;}
.ya2{bottom:895.470000px;}
.y82{bottom:898.710000px;}
.y163{bottom:910.050000px;}
.y1c7{bottom:911.670000px;}
.y33{bottom:912.930000px;}
.ya0{bottom:914.370000px;}
.y100{bottom:916.710000px;}
.y81{bottom:917.610000px;}
.y13a{bottom:923.190000px;}
.y7{bottom:928.950000px;}
.y32{bottom:931.830000px;}
.y1c6{bottom:933.630000px;}
.y80{bottom:936.510000px;}
.y9f{bottom:937.050000px;}
.yff{bottom:938.670000px;}
.y162{bottom:950.730000px;}
.y31{bottom:950.910000px;}
.y1c5{bottom:955.410000px;}
.y7f{bottom:955.590000px;}
.y9e{bottom:955.950000px;}
.y6{bottom:960.090000px;}
.yf9{bottom:960.450000px;}
.y30{bottom:969.810000px;}
.y9d{bottom:973.770000px;}
.y7e{bottom:977.190000px;}
.yfc{bottom:982.230000px;}
.y2f{bottom:988.710000px;}
.y7d{bottom:998.970000px;}
.y5{bottom:1005.450000px;}
.y2e{bottom:1007.790000px;}
.y7c{bottom:1020.930000px;}
.yf8{bottom:1023.810000px;}
.y2d{bottom:1026.690000px;}
.y7b{bottom:1042.710000px;}
.yf7{bottom:1042.890000px;}
.y2c{bottom:1045.770000px;}
.y4{bottom:1047.390000px;}
.y7a{bottom:1064.490000px;}
.y2b{bottom:1064.670000px;}
.y3{bottom:1065.930000px;}
.hc{height:18.900000px;}
.hd{height:19.080000px;}
.h11{height:21.060000px;}
.hf{height:21.240000px;}
.h10{height:21.780000px;}
.h16{height:21.960000px;}
.h17{height:23.940000px;}
.h6{height:25.839844px;}
.hb{height:34.625391px;}
.h12{height:37.980000px;}
.h13{height:38.016000px;}
.h18{height:38.340000px;}
.h7{height:38.759766px;}
.he{height:42.480000px;}
.h2{height:42.894141px;}
.h19{height:44.507812px;}
.h9{height:46.736719px;}
.h8{height:47.545312px;}
.h1a{height:48.224531px;}
.h1c{height:51.679688px;}
.h15{height:53.755312px;}
.ha{height:54.596250px;}
.h14{height:59.760000px;}
.h5{height:61.985391px;}
.h1{height:65.884219px;}
.h3{height:77.519531px;}
.h4{height:89.015625px;}
.h1b{height:240.510000px;}
.h0{height:1188.000000px;}
.w1c{width:53.280000px;}
.w16{width:62.640000px;}
.w1d{width:67.176000px;}
.w15{width:67.860000px;}
.w18{width:68.436000px;}
.w17{width:70.740000px;}
.wf{width:71.280000px;}
.we{width:71.316000px;}
.wd{width:71.460000px;}
.w10{width:71.496000px;}
.w11{width:71.640000px;}
.w1a{width:71.676000px;}
.w19{width:81.720000px;}
.w8{width:116.856000px;}
.w5{width:117.000000px;}
.w7{width:117.180000px;}
.w6{width:117.216000px;}
.wb{width:120.420000px;}
.wc{width:127.296000px;}
.wa{width:153.390000px;}
.w13{width:201.810000px;}
.w12{width:202.350000px;}
.w14{width:225.030000px;}
.w2{width:233.850000px;}
.w4{width:234.030000px;}
.w3{width:234.210000px;}
.w9{width:263.010000px;}
.w1e{width:347.070000px;}
.w1f{width:354.315000px;}
.w1b{width:510.375000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x26{left:10.260000px;}
.x12{left:12.600000px;}
.x30{left:14.400000px;}
.x33{left:15.660000px;}
.x25{left:17.100000px;}
.x1e{left:19.080000px;}
.x16{left:23.220000px;}
.x3c{left:25.200000px;}
.x20{left:27.360000px;}
.x1c{left:29.340000px;}
.xf{left:31.860000px;}
.x2c{left:38.160000px;}
.x44{left:46.794000px;}
.x1a{left:48.600000px;}
.x10{left:50.220000px;}
.x2d{left:63.720000px;}
.x15{left:67.350000px;}
.x13{left:75.630000px;}
.xe{left:84.780000px;}
.xc{left:87.660000px;}
.x14{left:96.300000px;}
.x2{left:108.035986px;}
.x2a{left:110.556000px;}
.x18{left:113.256000px;}
.x3{left:129.275986px;}
.x5{left:135.035986px;}
.x28{left:155.189986px;}
.x42{left:161.849986px;}
.x3f{left:175.529986px;}
.x38{left:178.229986px;}
.x36{left:192.269986px;}
.x17{left:211.349986px;}
.x39{left:215.129986px;}
.x8{left:217.289986px;}
.x34{left:227.009986px;}
.x40{left:309.494986px;}
.x2b{left:312.915000px;}
.x29{left:337.214986px;}
.xb{left:341.895000px;}
.x46{left:346.035000px;}
.x41{left:357.734986px;}
.x19{left:376.275000px;}
.x31{left:446.295000px;}
.x1f{left:447.735000px;}
.x45{left:455.115000px;}
.x9{left:459.074986px;}
.x4{left:486.074986px;}
.x47{left:507.314986px;}
.x6{left:513.104986px;}
.x2e{left:514.725000px;}
.x21{left:519.045000px;}
.x1b{left:529.665000px;}
.x43{left:539.924986px;}
.xd{left:576.105000px;}
.x7{left:577.184986px;}
.x1{left:585.464986px;}
.x22{left:590.505000px;}
.x3a{left:622.725000px;}
.x1d{left:650.085000px;}
.x3e{left:653.324986px;}
.x23{left:661.785000px;}
.x32{left:668.085000px;}
.x35{left:672.764986px;}
.x3b{left:676.005000px;}
.x37{left:679.604986px;}
.x11{left:693.285000px;}
.x24{left:733.290000px;}
.x2f{left:739.770000px;}
.x3d{left:743.190000px;}
.x27{left:748.589986px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsa{letter-spacing:-2.426667pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:-0.204800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:34.938027pt;}
.ls6{letter-spacing:37.098667pt;}
.lsb{letter-spacing:38.031360pt;}
.ls10{letter-spacing:38.138027pt;}
.ls12{letter-spacing:57.578667pt;}
.lsd{letter-spacing:59.770027pt;}
.lse{letter-spacing:59.791360pt;}
.ls13{letter-spacing:174.186667pt;}
.ws9{word-spacing:-58.880000pt;}
.ws1{word-spacing:-24.000000pt;}
.wsb{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.293333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws6{word-spacing:-0.058880pt;}
.ws7{word-spacing:0.000000pt;}
._43{margin-left:-5.532160pt;}
._5{margin-left:-4.544000pt;}
._d{margin-left:-2.954667pt;}
._4{margin-left:-1.941333pt;}
._6{margin-left:-0.992000pt;}
._3{width:0.949333pt;}
._9{width:2.176000pt;}
._18{width:3.473920pt;}
._15{width:5.063680pt;}
._16{width:5.962667pt;}
._c{width:6.979840pt;}
._a{width:8.302080pt;}
._b{width:9.313280pt;}
._e{width:10.951680pt;}
._12{width:12.212480pt;}
._11{width:13.356800pt;}
._1{width:14.315520pt;}
._2{width:15.752960pt;}
._0{width:16.655360pt;}
._17{width:17.664000pt;}
._2b{width:18.713173pt;}
._1a{width:19.724800pt;}
._1d{width:21.491200pt;}
._21{width:22.433280pt;}
._3b{width:24.081920pt;}
._24{width:25.082880pt;}
._13{width:26.083840pt;}
._14{width:27.721813pt;}
._f{width:29.145600pt;}
._10{width:30.253653pt;}
._2a{width:31.334827pt;}
._1c{width:32.501760pt;}
._1b{width:34.241707pt;}
._19{width:35.210240pt;}
._2d{width:36.211200pt;}
._8{width:37.962667pt;}
._7{width:38.944000pt;}
._47{width:39.880107pt;}
._39{width:40.803840pt;}
._2c{width:41.804800pt;}
._2f{width:43.747840pt;}
._3e{width:45.102080pt;}
._23{width:46.338560pt;}
._20{width:48.046080pt;}
._33{width:49.105920pt;}
._1f{width:50.048000pt;}
._49{width:51.284480pt;}
._32{width:52.462080pt;}
._36{width:53.875200pt;}
._30{width:54.817280pt;}
._37{width:56.289280pt;}
._22{width:57.811627pt;}
._29{width:59.174400pt;}
._4c{width:60.587520pt;}
._3f{width:61.529600pt;}
._3c{width:63.649280pt;}
._3d{width:64.788907pt;}
._25{width:66.181120pt;}
._26{width:67.348053pt;}
._4f{width:68.430080pt;}
._38{width:69.693440pt;}
._44{width:70.832640pt;}
._45{width:72.538453pt;}
._34{width:74.012160pt;}
._35{width:74.945280pt;}
._3a{width:77.948160pt;}
._4b{width:79.370240pt;}
._42{width:80.312320pt;}
._31{width:81.372160pt;}
._41{width:82.549760pt;}
._40{width:84.012800pt;}
._53{width:85.788160pt;}
._4a{width:88.143360pt;}
._4d{width:90.086400pt;}
._48{width:91.083947pt;}
._2e{width:92.618240pt;}
._50{width:94.022400pt;}
._4e{width:99.851520pt;}
._1e{width:108.221440pt;}
._27{width:114.521600pt;}
._28{width:115.925760pt;}
._46{width:123.589120pt;}
._51{width:186.414080pt;}
._52{width:187.707733pt;}
._54{width:242.997760pt;}
._55{width:656.032000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:3.200000pt;}
.ya4{bottom:3.360000pt;}
.y142{bottom:3.520000pt;}
.yc2{bottom:5.120000pt;}
.ybe{bottom:5.280000pt;}
.y13f{bottom:5.440000pt;}
.yfe{bottom:5.600000pt;}
.yc0{bottom:5.760000pt;}
.ybc{bottom:7.200000pt;}
.y13b{bottom:7.680000pt;}
.y13d{bottom:11.840000pt;}
.yfb{bottom:12.800000pt;}
.yc4{bottom:20.160000pt;}
.yc7{bottom:20.200000pt;}
.y141{bottom:20.320000pt;}
.yfd{bottom:22.560000pt;}
.ybb{bottom:24.160000pt;}
.yfa{bottom:32.160000pt;}
.y184{bottom:33.760000pt;}
.y2{bottom:51.872000pt;}
.y1{bottom:69.792000pt;}
.y79{bottom:99.552000pt;}
.y122{bottom:100.352000pt;}
.y9c{bottom:102.112000pt;}
.y5d{bottom:103.072000pt;}
.y2a{bottom:105.952000pt;}
.ye3{bottom:106.912000pt;}
.y1a2{bottom:107.712000pt;}
.y158{bottom:108.192000pt;}
.yf6{bottom:111.072000pt;}
.y139{bottom:112.992000pt;}
.y121{bottom:117.152000pt;}
.y1c4{bottom:117.792000pt;}
.y78{bottom:118.912000pt;}
.y9b{bottom:119.072000pt;}
.y5c{bottom:119.872000pt;}
.y29{bottom:122.752000pt;}
.y1a1{bottom:124.512000pt;}
.y157{bottom:125.152000pt;}
.ye2{bottom:126.272000pt;}
.y138{bottom:129.792000pt;}
.yf5{bottom:130.432000pt;}
.ycc{bottom:130.912000pt;}
.y120{bottom:133.946667pt;}
.y1c3{bottom:134.586667pt;}
.y77{bottom:135.866667pt;}
.y5b{bottom:136.666667pt;}
.y28{bottom:139.706667pt;}
.y1a0{bottom:141.466667pt;}
.y156{bottom:141.946667pt;}
.ye1{bottom:145.626667pt;}
.y137{bottom:146.746667pt;}
.yf4{bottom:147.546667pt;}
.ycb{bottom:147.866667pt;}
.y11f{bottom:150.906667pt;}
.y1c2{bottom:151.546667pt;}
.y76{bottom:152.826667pt;}
.y5a{bottom:153.626667pt;}
.y27{bottom:156.506667pt;}
.y19f{bottom:158.266667pt;}
.y155{bottom:158.746667pt;}
.yca{bottom:161.466667pt;}
.y136{bottom:163.546667pt;}
.yf3{bottom:164.346667pt;}
.ye0{bottom:165.146667pt;}
.y11e{bottom:167.706667pt;}
.y1c1{bottom:168.346667pt;}
.y75{bottom:169.626667pt;}
.y59{bottom:170.426667pt;}
.y26{bottom:173.306667pt;}
.y19e{bottom:175.066667pt;}
.y154{bottom:175.706667pt;}
.yc9{bottom:180.186667pt;}
.y135{bottom:180.506667pt;}
.yf2{bottom:181.306667pt;}
.ydf{bottom:184.506667pt;}
.y11d{bottom:184.666667pt;}
.y1c0{bottom:185.306667pt;}
.y74{bottom:186.426667pt;}
.y58{bottom:187.386667pt;}
.y25{bottom:190.266667pt;}
.y19d{bottom:192.026667pt;}
.y153{bottom:192.506667pt;}
.y134{bottom:197.306667pt;}
.yf1{bottom:198.106667pt;}
.y11c{bottom:198.266667pt;}
.y1bf{bottom:202.106667pt;}
.y73{bottom:203.386667pt;}
.yde{bottom:203.866667pt;}
.y57{bottom:204.186667pt;}
.y24{bottom:207.066667pt;}
.y19c{bottom:208.826667pt;}
.y152{bottom:209.466667pt;}
.yc8{bottom:213.946667pt;}
.y133{bottom:214.106667pt;}
.yf0{bottom:215.066667pt;}
.y1be{bottom:219.066667pt;}
.y72{bottom:220.186667pt;}
.y56{bottom:220.986667pt;}
.ydd{bottom:223.226667pt;}
.y19b{bottom:225.786667pt;}
.y151{bottom:226.266667pt;}
.y132{bottom:231.066667pt;}
.yef{bottom:231.866667pt;}
.y1bd{bottom:235.866667pt;}
.y71{bottom:237.146667pt;}
.y55{bottom:237.946667pt;}
.y23{bottom:240.026667pt;}
.ydc{bottom:242.586667pt;}
.y150{bottom:243.066667pt;}
.y131{bottom:244.666667pt;}
.yc6{bottom:247.706667pt;}
.yee{bottom:248.666667pt;}
.y1bc{bottom:252.666667pt;}
.y70{bottom:253.946667pt;}
.y54{bottom:254.746667pt;}
.y22{bottom:256.826667pt;}
.y19a{bottom:259.386667pt;}
.y14f{bottom:260.026667pt;}
.ydb{bottom:262.106667pt;}
.yed{bottom:265.626667pt;}
.y182{bottom:266.626667pt;}
.y1bb{bottom:269.666667pt;}
.y6f{bottom:270.786667pt;}
.y53{bottom:271.746667pt;}
.y21{bottom:273.666667pt;}
.y199{bottom:276.386667pt;}
.y14e{bottom:276.866667pt;}
.yc5{bottom:281.506667pt;}
.yec{bottom:282.466667pt;}
.y181{bottom:283.426667pt;}
.y161{bottom:285.986667pt;}
.y6e{bottom:287.746667pt;}
.y52{bottom:288.546667pt;}
.y1ba{bottom:288.866667pt;}
.y20{bottom:290.626667pt;}
.y14d{bottom:293.186667pt;}
.yeb{bottom:299.426667pt;}
.y180{bottom:300.386667pt;}
.yda{bottom:300.866667pt;}
.y160{bottom:302.946667pt;}
.y6d{bottom:304.546667pt;}
.y51{bottom:305.506667pt;}
.y1f{bottom:307.426667pt;}
.y14c{bottom:307.586667pt;}
.y1b9{bottom:308.226667pt;}
.y198{bottom:310.146667pt;}
.yc3{bottom:315.266667pt;}
.yea{bottom:316.226667pt;}
.y17f{bottom:317.186667pt;}
.y15f{bottom:319.746667pt;}
.yd9{bottom:320.226667pt;}
.y6c{bottom:321.506667pt;}
.y50{bottom:322.306667pt;}
.y1e{bottom:324.386667pt;}
.y197{bottom:326.946667pt;}
.y1b8{bottom:327.586667pt;}
.ye9{bottom:333.026667pt;}
.y17e{bottom:334.146667pt;}
.y15e{bottom:336.706667pt;}
.y6b{bottom:338.306667pt;}
.y4f{bottom:339.106667pt;}
.yd8{bottom:339.746667pt;}
.y1d{bottom:341.186667pt;}
.y14b{bottom:341.346667pt;}
.y196{bottom:343.906667pt;}
.y1b7{bottom:344.706667pt;}
.yc1{bottom:349.026667pt;}
.ye8{bottom:349.986667pt;}
.y17d{bottom:350.946667pt;}
.y11b{bottom:352.706667pt;}
.y15d{bottom:353.506667pt;}
.y6a{bottom:355.106667pt;}
.y4e{bottom:356.066667pt;}
.y14a{bottom:357.666667pt;}
.y1c{bottom:358.146667pt;}
.yd7{bottom:359.106667pt;}
.y195{bottom:360.706667pt;}
.y1b6{bottom:361.506667pt;}
.ye7{bottom:366.786667pt;}
.ybf{bottom:367.746667pt;}
.y17c{bottom:367.906667pt;}
.y11a{bottom:369.506667pt;}
.y15c{bottom:370.306667pt;}
.y69{bottom:372.066667pt;}
.y4d{bottom:372.866667pt;}
.y1b{bottom:374.946667pt;}
.y194{bottom:377.506667pt;}
.yd6{bottom:378.466667pt;}
.ye6{bottom:383.746667pt;}
.y17b{bottom:384.706667pt;}
.y119{bottom:386.306667pt;}
.yba{bottom:387.106667pt;}
.y15b{bottom:387.266667pt;}
.y68{bottom:388.866667pt;}
.y4c{bottom:389.826667pt;}
.y9a{bottom:391.266667pt;}
.y1a{bottom:391.746667pt;}
.y193{bottom:394.466667pt;}
.y1b5{bottom:395.266667pt;}
.yd5{bottom:397.826667pt;}
.ye5{bottom:400.546667pt;}
.y17a{bottom:401.506667pt;}
.y118{bottom:403.266667pt;}
.y15a{bottom:404.066667pt;}
.y67{bottom:405.826667pt;}
.ybd{bottom:405.986667pt;}
.y4b{bottom:406.626667pt;}
.y99{bottom:410.626667pt;}
.y192{bottom:411.266667pt;}
.y1b4{bottom:412.066667pt;}
.yd4{bottom:417.186667pt;}
.ye4{bottom:417.346667pt;}
.y179{bottom:418.466667pt;}
.y117{bottom:420.066667pt;}
.y66{bottom:422.626667pt;}
.y159{bottom:423.266667pt;}
.y4a{bottom:423.426667pt;}
.y19{bottom:424.706667pt;}
.y98{bottom:427.746667pt;}
.yb9{bottom:428.066667pt;}
.y191{bottom:428.226667pt;}
.y1b3{bottom:429.026667pt;}
.y178{bottom:435.266667pt;}
.yd3{bottom:436.706667pt;}
.y116{bottom:437.026667pt;}
.y65{bottom:439.426667pt;}
.y49{bottom:440.386667pt;}
.y97{bottom:444.546667pt;}
.yb8{bottom:445.026667pt;}
.y130{bottom:445.346667pt;}
.y1b2{bottom:445.826667pt;}
.y177{bottom:452.226667pt;}
.y115{bottom:453.826667pt;}
.yd2{bottom:456.066667pt;}
.y48{bottom:457.186667pt;}
.y64{bottom:458.786667pt;}
.y96{bottom:461.506667pt;}
.yb7{bottom:461.826667pt;}
.y12f{bottom:462.146667pt;}
.y1b1{bottom:462.786667pt;}
.y18{bottom:465.506667pt;}
.y176{bottom:469.026667pt;}
.y114{bottom:470.626667pt;}
.y47{bottom:474.146667pt;}
.yd1{bottom:475.426667pt;}
.y63{bottom:478.146667pt;}
.y95{bottom:478.306667pt;}
.yb6{bottom:478.626667pt;}
.y190{bottom:478.786667pt;}
.y12e{bottom:479.106667pt;}
.y1b0{bottom:479.586667pt;}
.y175{bottom:485.826667pt;}
.y113{bottom:487.586667pt;}
.y46{bottom:490.946667pt;}
.yd0{bottom:492.386667pt;}
.y94{bottom:495.133333pt;}
.yb5{bottom:495.613333pt;}
.y12d{bottom:495.933333pt;}
.y1af{bottom:496.413333pt;}
.y62{bottom:497.533333pt;}
.y17{bottom:498.493333pt;}
.y174{bottom:502.813333pt;}
.y112{bottom:504.413333pt;}
.y45{bottom:507.773333pt;}
.ycf{bottom:509.373333pt;}
.y93{bottom:512.093333pt;}
.yb4{bottom:512.413333pt;}
.y18f{bottom:512.573333pt;}
.y12c{bottom:512.893333pt;}
.y1ae{bottom:513.373333pt;}
.y16{bottom:515.293333pt;}
.y61{bottom:516.893333pt;}
.y111{bottom:521.373333pt;}
.y173{bottom:522.013333pt;}
.y44{bottom:524.733333pt;}
.yce{bottom:526.173333pt;}
.y92{bottom:528.893333pt;}
.yb3{bottom:529.373333pt;}
.y12b{bottom:529.693333pt;}
.y1ad{bottom:530.173333pt;}
.y15{bottom:532.093333pt;}
.y60{bottom:536.413333pt;}
.y110{bottom:538.173333pt;}
.y172{bottom:538.973333pt;}
.ycd{bottom:539.773333pt;}
.y43{bottom:541.533333pt;}
.y91{bottom:545.853333pt;}
.yb2{bottom:546.173333pt;}
.y12a{bottom:546.493333pt;}
.y1ac{bottom:547.133333pt;}
.y149{bottom:548.893333pt;}
.y14{bottom:549.053333pt;}
.y10f{bottom:555.133333pt;}
.y5f{bottom:555.773333pt;}
.y171{bottom:555.933333pt;}
.y42{bottom:558.493333pt;}
.y90{bottom:562.653333pt;}
.yb1{bottom:562.973333pt;}
.y18e{bottom:563.133333pt;}
.y129{bottom:563.453333pt;}
.y1ab{bottom:563.933333pt;}
.y13{bottom:565.853333pt;}
.y10e{bottom:571.933333pt;}
.y170{bottom:572.733333pt;}
.y5e{bottom:575.133333pt;}
.y41{bottom:575.293333pt;}
.y8f{bottom:579.453333pt;}
.yb0{bottom:579.933333pt;}
.y128{bottom:580.253333pt;}
.y1aa{bottom:580.893333pt;}
.y1d1{bottom:581.213333pt;}
.y18d{bottom:582.333333pt;}
.y148{bottom:582.653333pt;}
.y12{bottom:582.813333pt;}
.y10d{bottom:588.733333pt;}
.y16f{bottom:589.693333pt;}
.y40{bottom:592.093333pt;}
.y8e{bottom:596.413333pt;}
.yaf{bottom:596.733333pt;}
.y127{bottom:597.213333pt;}
.y1a9{bottom:597.693333pt;}
.y11{bottom:599.613333pt;}
.y18c{bottom:601.693333pt;}
.y10c{bottom:605.693333pt;}
.y16e{bottom:606.493333pt;}
.y3f{bottom:609.053333pt;}
.y8d{bottom:613.213333pt;}
.yae{bottom:613.693333pt;}
.y126{bottom:614.013333pt;}
.y1a8{bottom:614.493333pt;}
.y10{bottom:616.413333pt;}
.y18b{bottom:621.053333pt;}
.y10b{bottom:622.493333pt;}
.y16d{bottom:623.293333pt;}
.y3e{bottom:625.853333pt;}
.y8c{bottom:630.173333pt;}
.yad{bottom:630.493333pt;}
.y125{bottom:630.813333pt;}
.y1a7{bottom:631.453333pt;}
.y147{bottom:633.213333pt;}
.yf{bottom:633.373333pt;}
.y1d0{bottom:635.773333pt;}
.y10a{bottom:639.453333pt;}
.y16c{bottom:640.253333pt;}
.y18a{bottom:640.573333pt;}
.y3d{bottom:642.813333pt;}
.y8b{bottom:646.973333pt;}
.yac{bottom:647.293333pt;}
.y124{bottom:647.773333pt;}
.y1a6{bottom:648.253333pt;}
.ye{bottom:650.173333pt;}
.y1cf{bottom:655.293333pt;}
.y109{bottom:656.253333pt;}
.y16b{bottom:657.053333pt;}
.y3c{bottom:659.613333pt;}
.y189{bottom:659.933333pt;}
.y123{bottom:661.373333pt;}
.y8a{bottom:663.773333pt;}
.yab{bottom:664.253333pt;}
.y1a5{bottom:665.213333pt;}
.y146{bottom:666.973333pt;}
.yd{bottom:667.133333pt;}
.y108{bottom:673.053333pt;}
.y16a{bottom:674.013333pt;}
.y1ce{bottom:674.653333pt;}
.y3b{bottom:676.413333pt;}
.y188{bottom:679.293333pt;}
.y89{bottom:680.733333pt;}
.yaa{bottom:681.053333pt;}
.y1a4{bottom:682.013333pt;}
.y145{bottom:683.933333pt;}
.y107{bottom:690.013333pt;}
.y169{bottom:690.813333pt;}
.y3a{bottom:693.373333pt;}
.y1cd{bottom:694.013333pt;}
.yc{bottom:695.773333pt;}
.y88{bottom:697.533333pt;}
.ya9{bottom:698.013333pt;}
.y187{bottom:698.653333pt;}
.y1a3{bottom:698.813333pt;}
.y144{bottom:700.733333pt;}
.y106{bottom:706.813333pt;}
.y168{bottom:707.613333pt;}
.y39{bottom:710.173333pt;}
.y1cc{bottom:713.373333pt;}
.y87{bottom:714.493333pt;}
.ya8{bottom:714.813333pt;}
.y186{bottom:715.773333pt;}
.y143{bottom:717.533333pt;}
.y105{bottom:723.813333pt;}
.yb{bottom:724.613333pt;}
.y38{bottom:727.173333pt;}
.ya7{bottom:728.453333pt;}
.y140{bottom:731.173333pt;}
.y86{bottom:731.333333pt;}
.y185{bottom:732.613333pt;}
.y1cb{bottom:732.933333pt;}
.y104{bottom:737.413333pt;}
.ya{bottom:741.093333pt;}
.y167{bottom:741.413333pt;}
.y37{bottom:743.973333pt;}
.ya6{bottom:745.253333pt;}
.y183{bottom:746.213333pt;}
.y85{bottom:748.133333pt;}
.y1ca{bottom:752.293333pt;}
.y103{bottom:756.773333pt;}
.y166{bottom:758.373333pt;}
.y9{bottom:758.853333pt;}
.y36{bottom:760.933333pt;}
.ya5{bottom:762.213333pt;}
.y84{bottom:765.093333pt;}
.y13e{bottom:765.253333pt;}
.y1c9{bottom:771.653333pt;}
.y165{bottom:775.173333pt;}
.y102{bottom:776.133333pt;}
.y35{bottom:777.733333pt;}
.ya3{bottom:779.013333pt;}
.y83{bottom:781.893333pt;}
.y13c{bottom:786.533333pt;}
.y1c8{bottom:791.013333pt;}
.y164{bottom:792.133333pt;}
.y34{bottom:794.533333pt;}
.y8{bottom:795.013333pt;}
.y101{bottom:795.493333pt;}
.ya2{bottom:795.973333pt;}
.y82{bottom:798.853333pt;}
.y163{bottom:808.933333pt;}
.y1c7{bottom:810.373333pt;}
.y33{bottom:811.493333pt;}
.ya0{bottom:812.773333pt;}
.y100{bottom:814.853333pt;}
.y81{bottom:815.653333pt;}
.y13a{bottom:820.613333pt;}
.y7{bottom:825.733333pt;}
.y32{bottom:828.293333pt;}
.y1c6{bottom:829.893333pt;}
.y80{bottom:832.453333pt;}
.y9f{bottom:832.933333pt;}
.yff{bottom:834.373333pt;}
.y162{bottom:845.093333pt;}
.y31{bottom:845.253333pt;}
.y1c5{bottom:849.253333pt;}
.y7f{bottom:849.413333pt;}
.y9e{bottom:849.733333pt;}
.y6{bottom:853.413333pt;}
.yf9{bottom:853.733333pt;}
.y30{bottom:862.053333pt;}
.y9d{bottom:865.573333pt;}
.y7e{bottom:868.613333pt;}
.yfc{bottom:873.093333pt;}
.y2f{bottom:878.853333pt;}
.y7d{bottom:887.973333pt;}
.y5{bottom:893.733333pt;}
.y2e{bottom:895.813333pt;}
.y7c{bottom:907.493333pt;}
.yf8{bottom:910.053333pt;}
.y2d{bottom:912.613333pt;}
.y7b{bottom:926.853333pt;}
.yf7{bottom:927.013333pt;}
.y2c{bottom:929.573333pt;}
.y4{bottom:931.013333pt;}
.y7a{bottom:946.213333pt;}
.y2b{bottom:946.373333pt;}
.y3{bottom:947.493333pt;}
.hc{height:16.800000pt;}
.hd{height:16.960000pt;}
.h11{height:18.720000pt;}
.hf{height:18.880000pt;}
.h10{height:19.360000pt;}
.h16{height:19.520000pt;}
.h17{height:21.280000pt;}
.h6{height:22.968750pt;}
.hb{height:30.778125pt;}
.h12{height:33.760000pt;}
.h13{height:33.792000pt;}
.h18{height:34.080000pt;}
.h7{height:34.453125pt;}
.he{height:37.760000pt;}
.h2{height:38.128125pt;}
.h19{height:39.562500pt;}
.h9{height:41.543750pt;}
.h8{height:42.262500pt;}
.h1a{height:42.866250pt;}
.h1c{height:45.937500pt;}
.h15{height:47.782500pt;}
.ha{height:48.530000pt;}
.h14{height:53.120000pt;}
.h5{height:55.098125pt;}
.h1{height:58.563750pt;}
.h3{height:68.906250pt;}
.h4{height:79.125000pt;}
.h1b{height:213.786667pt;}
.h0{height:1056.000000pt;}
.w1c{width:47.360000pt;}
.w16{width:55.680000pt;}
.w1d{width:59.712000pt;}
.w15{width:60.320000pt;}
.w18{width:60.832000pt;}
.w17{width:62.880000pt;}
.wf{width:63.360000pt;}
.we{width:63.392000pt;}
.wd{width:63.520000pt;}
.w10{width:63.552000pt;}
.w11{width:63.680000pt;}
.w1a{width:63.712000pt;}
.w19{width:72.640000pt;}
.w8{width:103.872000pt;}
.w5{width:104.000000pt;}
.w7{width:104.160000pt;}
.w6{width:104.192000pt;}
.wb{width:107.040000pt;}
.wc{width:113.152000pt;}
.wa{width:136.346667pt;}
.w13{width:179.386667pt;}
.w12{width:179.866667pt;}
.w14{width:200.026667pt;}
.w2{width:207.866667pt;}
.w4{width:208.026667pt;}
.w3{width:208.186667pt;}
.w9{width:233.786667pt;}
.w1e{width:308.506667pt;}
.w1f{width:314.946667pt;}
.w1b{width:453.666667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x26{left:9.120000pt;}
.x12{left:11.200000pt;}
.x30{left:12.800000pt;}
.x33{left:13.920000pt;}
.x25{left:15.200000pt;}
.x1e{left:16.960000pt;}
.x16{left:20.640000pt;}
.x3c{left:22.400000pt;}
.x20{left:24.320000pt;}
.x1c{left:26.080000pt;}
.xf{left:28.320000pt;}
.x2c{left:33.920000pt;}
.x44{left:41.594667pt;}
.x1a{left:43.200000pt;}
.x10{left:44.640000pt;}
.x2d{left:56.640000pt;}
.x15{left:59.866667pt;}
.x13{left:67.226667pt;}
.xe{left:75.360000pt;}
.xc{left:77.920000pt;}
.x14{left:85.600000pt;}
.x2{left:96.031988pt;}
.x2a{left:98.272000pt;}
.x18{left:100.672000pt;}
.x3{left:114.911988pt;}
.x5{left:120.031988pt;}
.x28{left:137.946655pt;}
.x42{left:143.866655pt;}
.x3f{left:156.026655pt;}
.x38{left:158.426655pt;}
.x36{left:170.906655pt;}
.x17{left:187.866655pt;}
.x39{left:191.226655pt;}
.x8{left:193.146655pt;}
.x34{left:201.786655pt;}
.x40{left:275.106655pt;}
.x2b{left:278.146667pt;}
.x29{left:299.746655pt;}
.xb{left:303.906667pt;}
.x46{left:307.586667pt;}
.x41{left:317.986655pt;}
.x19{left:334.466667pt;}
.x31{left:396.706667pt;}
.x1f{left:397.986667pt;}
.x45{left:404.546667pt;}
.x9{left:408.066655pt;}
.x4{left:432.066655pt;}
.x47{left:450.946655pt;}
.x6{left:456.093321pt;}
.x2e{left:457.533333pt;}
.x21{left:461.373333pt;}
.x1b{left:470.813333pt;}
.x43{left:479.933321pt;}
.xd{left:512.093333pt;}
.x7{left:513.053321pt;}
.x1{left:520.413321pt;}
.x22{left:524.893333pt;}
.x3a{left:553.533333pt;}
.x1d{left:577.853333pt;}
.x3e{left:580.733321pt;}
.x23{left:588.253333pt;}
.x32{left:593.853333pt;}
.x35{left:598.013321pt;}
.x3b{left:600.893333pt;}
.x37{left:604.093321pt;}
.x11{left:616.253333pt;}
.x24{left:651.813333pt;}
.x2f{left:657.573333pt;}
.x3d{left:660.613333pt;}
.x27{left:665.413321pt;}
}




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