
    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_5b85733ecce8cdd9e1b577aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f5d8431d25e5dc22dbfd5893.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8d723bf6d56b78dfa5660644.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_32412816e8075a493ca18c3a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.903809;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_dbc96d4b8ba8ae9cc24a9a44.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b385b055297942eafe81ff0a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a257bb66562c32cb78c31f8f.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_d18861fe735072766e52e0f0.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4ec86d6684638de28dd4dcb9.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_46e97b39f464702c8c34ac0d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.731445;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v4{vertical-align:-49.080000px;}
.v2{vertical-align:-30.240000px;}
.v7{vertical-align:-27.360000px;}
.v5{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.v6{vertical-align:49.080000px;}
.lsc{letter-spacing:-1.422000px;}
.lsd{letter-spacing:-1.296000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.486600px;}
.ls5{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.456000px;}
.ls4{letter-spacing:-0.443400px;}
.ls2{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.382800px;}
.ls1b{letter-spacing:-0.322800px;}
.ls17{letter-spacing:-0.305400px;}
.ls1c{letter-spacing:-0.178800px;}
.ls16{letter-spacing:-0.152400px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.466800px;}
.lse{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls19{letter-spacing:1.584000px;}
.lsb{letter-spacing:7.920000px;}
.ls18{letter-spacing:33.264000px;}
.lsa{letter-spacing:33.276000px;}
.ls13{letter-spacing:51.923952px;}
.ls11{letter-spacing:51.983952px;}
.ls10{letter-spacing:51.996960px;}
.lsf{letter-spacing:52.056960px;}
.ls12{letter-spacing:52.176960px;}
.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;}
}
.wsd{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.407600px;}
.ws0{word-spacing:-16.272000px;}
.ws13{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.768000px;}
.ws8{word-spacing:-15.627000px;}
.wsa{word-spacing:-15.586800px;}
.ws7{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.633400px;}
.ws6{word-spacing:-14.506440px;}
.ws2{word-spacing:-13.875960px;}
.wsc{word-spacing:-13.698000px;}
.ws11{word-spacing:-12.399264px;}
.ws10{word-spacing:-12.366720px;}
.wse{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.wsb{word-spacing:0.000000px;}
.wsf{word-spacing:39.630240px;}
._f{margin-left:-5.520960px;}
._e{margin-left:-4.392000px;}
._17{margin-left:-3.255360px;}
._4{margin-left:-2.239680px;}
._0{margin-left:-1.008000px;}
._1{width:1.440000px;}
._5{width:2.723520px;}
._7{width:4.297440px;}
._8{width:5.868960px;}
._9{width:7.682880px;}
._2{width:8.942400px;}
._3{width:10.612800px;}
._6{width:12.530880px;}
._c{width:13.536000px;}
._10{width:16.356000px;}
._b{width:20.016000px;}
._a{width:21.024000px;}
._14{width:22.752000px;}
._15{width:24.055680px;}
._16{width:25.548000px;}
._d{width:33.768000px;}
._12{width:100.771200px;}
._13{width:127.389120px;}
._11{width:132.656160px;}
.fc8{color:rgb(146,208,80);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(68,114,196);}
.fc3{color:transparent;}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs8{font-size:54.864000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:3.600000px;}
.yf5{bottom:5.394000px;}
.yc4{bottom:5.400000px;}
.yd8{bottom:5.430000px;}
.yf2{bottom:5.445000px;}
.yc0{bottom:12.960000px;}
.yed{bottom:17.280000px;}
.yca{bottom:17.310000px;}
.y14a{bottom:17.460000px;}
.yff{bottom:17.640000px;}
.yc1{bottom:22.680000px;}
.y106{bottom:29.160000px;}
.yc6{bottom:29.520000px;}
.y11f{bottom:41.445000px;}
.ybe{bottom:46.545000px;}
.y149{bottom:47.370000px;}
.yf0{bottom:53.274000px;}
.yd6{bottom:53.280000px;}
.ydd{bottom:53.640000px;}
.y7{bottom:57.240000px;}
.y143{bottom:64.950000px;}
.y28{bottom:76.356000px;}
.ye5{bottom:77.430000px;}
.yb9{bottom:94.320000px;}
.y13d{bottom:96.516000px;}
.yef{bottom:97.956000px;}
.ya6{bottom:98.070000px;}
.y50{bottom:99.756000px;}
.yb8{bottom:99.870000px;}
.y144{bottom:100.470000px;}
.ya8{bottom:100.800000px;}
.ycd{bottom:101.520000px;}
.ya3{bottom:101.775000px;}
.ya9{bottom:102.705000px;}
.yac{bottom:105.150000px;}
.y84{bottom:106.596000px;}
.y125{bottom:107.316000px;}
.ya7{bottom:107.490000px;}
.yb2{bottom:108.645000px;}
.y65{bottom:109.476000px;}
.yaa{bottom:110.190000px;}
.ya5{bottom:112.710000px;}
.ya4{bottom:114.945000px;}
.ybc{bottom:116.715000px;}
.yb0{bottom:118.905000px;}
.y91{bottom:119.196000px;}
.y27{bottom:119.916000px;}
.y13c{bottom:120.276000px;}
.yaf{bottom:120.930000px;}
.yf6{bottom:121.716000px;}
.yb4{bottom:122.190000px;}
.yb3{bottom:123.150000px;}
.yb5{bottom:123.270000px;}
.y4f{bottom:123.516000px;}
.yab{bottom:124.890000px;}
.y123{bottom:125.676000px;}
.yba{bottom:126.750000px;}
.ya2{bottom:127.650000px;}
.yb1{bottom:129.525000px;}
.y83{bottom:130.356000px;}
.yae{bottom:130.680000px;}
.yb7{bottom:132.120000px;}
.y64{bottom:133.236000px;}
.y145{bottom:136.005000px;}
.yad{bottom:136.950000px;}
.y26{bottom:139.716000px;}
.ybb{bottom:140.865000px;}
.y16a{bottom:142.236000px;}
.yb6{bottom:142.635000px;}
.y13b{bottom:144.036000px;}
.yf4{bottom:145.836000px;}
.y4e{bottom:147.276000px;}
.y18d{bottom:148.356000px;}
.y124{bottom:149.796000px;}
.y82{bottom:154.110000px;}
.y90{bottom:157.710000px;}
.y169{bottom:163.470000px;}
.y13a{bottom:167.790000px;}
.y18c{bottom:169.590000px;}
.yf3{bottom:169.950000px;}
.y146{bottom:171.540000px;}
.y63{bottom:172.110000px;}
.y141{bottom:173.850000px;}
.y11e{bottom:173.910000px;}
.y25{bottom:174.630000px;}
.ybd{bottom:179.535000px;}
.y140{bottom:182.160000px;}
.y10e{bottom:185.475000px;}
.y4d{bottom:186.150000px;}
.y81{bottom:192.990000px;}
.y9b{bottom:193.425000px;}
.yf1{bottom:193.710000px;}
.y24{bottom:194.430000px;}
.y8f{bottom:196.590000px;}
.y122{bottom:197.715000px;}
.y168{bottom:198.795000px;}
.y18b{bottom:204.915000px;}
.y139{bottom:206.715000px;}
.y147{bottom:207.075000px;}
.y4c{bottom:209.955000px;}
.y62{bottom:210.675000px;}
.y96{bottom:213.810000px;}
.yec{bottom:217.875000px;}
.y142{bottom:218.910000px;}
.y167{bottom:219.675000px;}
.y98{bottom:219.960000px;}
.y121{bottom:221.835000px;}
.y9c{bottom:224.130000px;}
.y94{bottom:226.080000px;}
.y18a{bottom:226.155000px;}
.y23{bottom:229.395000px;}
.y138{bottom:230.475000px;}
.y80{bottom:231.915000px;}
.y4b{bottom:234.075000px;}
.y68{bottom:234.795000px;}
.y13f{bottom:235.470000px;}
.y8e{bottom:235.515000px;}
.y99{bottom:238.350000px;}
.y166{bottom:240.555000px;}
.yee{bottom:241.995000px;}
.y148{bottom:242.610000px;}
.y120{bottom:245.955000px;}
.y22{bottom:249.195000px;}
.y61{bottom:249.555000px;}
.y137{bottom:254.235000px;}
.y9d{bottom:254.850000px;}
.y7f{bottom:255.675000px;}
.y97{bottom:256.785000px;}
.y4a{bottom:257.835000px;}
.y189{bottom:261.435000px;}
.ye4{bottom:265.755000px;}
.y67{bottom:268.275000px;}
.y21{bottom:268.995000px;}
.y93{bottom:269.670000px;}
.y10d{bottom:269.715000px;}
.y60{bottom:273.315000px;}
.y8d{bottom:274.395000px;}
.y165{bottom:275.835000px;}
.y136{bottom:277.995000px;}
.y7e{bottom:279.435000px;}
.y95{bottom:281.370000px;}
.y49{bottom:281.595000px;}
.y188{bottom:282.315000px;}
.y9e{bottom:285.555000px;}
.y20{bottom:288.795000px;}
.yeb{bottom:289.875000px;}
.y11d{bottom:293.835000px;}
.y164{bottom:296.715000px;}
.y135{bottom:301.755000px;}
.y48{bottom:305.355000px;}
.y5f{bottom:312.195000px;}
.y8c{bottom:313.275000px;}
.yea{bottom:313.995000px;}
.y9f{bottom:316.260000px;}
.y163{bottom:317.595000px;}
.y11c{bottom:317.955000px;}
.y7d{bottom:318.315000px;}
.y1f{bottom:323.745000px;}
.y134{bottom:325.905000px;}
.ye9{bottom:337.785000px;}
.y187{bottom:338.865000px;}
.y11b{bottom:341.745000px;}
.y47{bottom:344.265000px;}
.ya0{bottom:346.965000px;}
.y5e{bottom:351.105000px;}
.y8b{bottom:351.825000px;}
.y7c{bottom:352.905000px;}
.y162{bottom:356.145000px;}
.y1e{bottom:358.665000px;}
.y186{bottom:359.385000px;}
.y9a{bottom:361.185000px;}
.ye8{bottom:361.905000px;}
.y133{bottom:364.425000px;}
.y11a{bottom:365.865000px;}
.y46{bottom:368.025000px;}
.y5d{bottom:374.865000px;}
.y8a{bottom:375.585000px;}
.ya1{bottom:377.670000px;}
.ye7{bottom:386.025000px;}
.y132{bottom:388.185000px;}
.y119{bottom:389.985000px;}
.y7b{bottom:390.705000px;}
.y45{bottom:391.785000px;}
.y1d{bottom:393.585000px;}
.y161{bottom:395.025000px;}
.y66{bottom:397.905000px;}
.y89{bottom:399.705000px;}
.ye6{bottom:409.785000px;}
.y131{bottom:412.305000px;}
.y1c{bottom:413.385000px;}
.y118{bottom:413.745000px;}
.y44{bottom:415.545000px;}
.y185{bottom:415.905000px;}
.y160{bottom:418.785000px;}
.y7a{bottom:429.585000px;}
.ye3{bottom:433.905000px;}
.y130{bottom:436.065000px;}
.y184{bottom:436.785000px;}
.y117{bottom:437.865000px;}
.y88{bottom:438.225000px;}
.y43{bottom:439.305000px;}
.y1b{bottom:447.945000px;}
.y15f{bottom:457.350000px;}
.ye2{bottom:458.070000px;}
.y12f{bottom:459.870000px;}
.y116{bottom:462.030000px;}
.y42{bottom:463.110000px;}
.y1a{bottom:467.790000px;}
.y79{bottom:468.510000px;}
.y87{bottom:477.150000px;}
.y15e{bottom:481.470000px;}
.ydc{bottom:481.830000px;}
.y12e{bottom:483.630000px;}
.y115{bottom:485.790000px;}
.y41{bottom:486.870000px;}
.y19{bottom:487.950000px;}
.y183{bottom:492.630000px;}
.y86{bottom:500.910000px;}
.ye1{bottom:505.950000px;}
.y78{bottom:507.390000px;}
.y114{bottom:509.910000px;}
.y182{bottom:513.870000px;}
.y15d{bottom:519.630000px;}
.y18{bottom:522.510000px;}
.y40{bottom:525.750000px;}
.ye0{bottom:530.070000px;}
.y113{bottom:534.030000px;}
.y85{bottom:535.830000px;}
.y92{bottom:536.400000px;}
.y15c{bottom:541.230000px;}
.y17{bottom:542.310000px;}
.y77{bottom:545.910000px;}
.y12d{bottom:546.270000px;}
.y181{bottom:549.150000px;}
.y3f{bottom:549.510000px;}
.ydf{bottom:553.830000px;}
.y112{bottom:557.790000px;}
.y15b{bottom:563.190000px;}
.y180{bottom:570.030000px;}
.y3e{bottom:573.270000px;}
.y16{bottom:577.260000px;}
.yde{bottom:577.980000px;}
.y111{bottom:581.940000px;}
.y12c{bottom:584.460000px;}
.y76{bottom:584.820000px;}
.y15a{bottom:585.180000px;}
.y3d{bottom:597.420000px;}
.yd5{bottom:602.100000px;}
.y17f{bottom:605.700000px;}
.y110{bottom:606.060000px;}
.y159{bottom:606.780000px;}
.y15{bottom:612.180000px;}
.y3c{bottom:621.180000px;}
.y12b{bottom:621.900000px;}
.y75{bottom:623.700000px;}
.ydb{bottom:625.860000px;}
.y17e{bottom:626.580000px;}
.y158{bottom:628.740000px;}
.y10f{bottom:629.820000px;}
.y14{bottom:631.980000px;}
.y13e{bottom:639.000000px;}
.y3b{bottom:644.940000px;}
.yda{bottom:649.980000px;}
.y13{bottom:651.780000px;}
.y10b{bottom:653.940000px;}
.y5c{bottom:656.100000px;}
.y17d{bottom:661.860000px;}
.y74{bottom:662.580000px;}
.y157{bottom:666.180000px;}
.y12{bottom:671.580000px;}
.yd9{bottom:674.100000px;}
.y10c{bottom:678.060000px;}
.y17c{bottom:683.100000px;}
.y3a{bottom:683.820000px;}
.y156{bottom:689.940000px;}
.y5b{bottom:694.980000px;}
.yd7{bottom:697.860000px;}
.y73{bottom:701.130000px;}
.y109{bottom:701.850000px;}
.y39{bottom:707.610000px;}
.y11{bottom:712.650000px;}
.y155{bottom:713.730000px;}
.y17b{bottom:718.410000px;}
.ycc{bottom:722.010000px;}
.y10a{bottom:725.970000px;}
.y38{bottom:731.370000px;}
.y5a{bottom:733.890000px;}
.y17a{bottom:739.290000px;}
.y72{bottom:740.010000px;}
.yd4{bottom:746.130000px;}
.y105{bottom:750.090000px;}
.y154{bottom:752.610000px;}
.y10{bottom:752.970000px;}
.y37{bottom:755.130000px;}
.y179{bottom:760.170000px;}
.yd3{bottom:769.890000px;}
.yf{bottom:772.410000px;}
.y59{bottom:772.770000px;}
.y108{bottom:773.850000px;}
.y71{bottom:778.890000px;}
.y153{bottom:791.130000px;}
.ye{bottom:791.490000px;}
.y36{bottom:794.010000px;}
.y178{bottom:795.450000px;}
.y107{bottom:797.970000px;}
.y58{bottom:811.650000px;}
.y152{bottom:815.250000px;}
.y177{bottom:816.690000px;}
.y35{bottom:817.770000px;}
.yd2{bottom:818.130000px;}
.y104{bottom:822.090000px;}
.yd{bottom:825.330000px;}
.y176{bottom:837.255000px;}
.y151{bottom:839.055000px;}
.y34{bottom:841.575000px;}
.yd1{bottom:841.935000px;}
.y103{bottom:845.895000px;}
.y57{bottom:850.215000px;}
.y70{bottom:856.695000px;}
.yc{bottom:859.215000px;}
.y150{bottom:862.815000px;}
.y33{bottom:865.335000px;}
.yd0{bottom:866.055000px;}
.y101{bottom:870.015000px;}
.y175{bottom:872.535000px;}
.yb{bottom:878.295000px;}
.y14f{bottom:886.575000px;}
.y32{bottom:889.095000px;}
.ycf{bottom:890.175000px;}
.y174{bottom:893.775000px;}
.y102{bottom:894.135000px;}
.y6f{bottom:895.215000px;}
.y14e{bottom:910.335000px;}
.y31{bottom:912.855000px;}
.yce{bottom:913.935000px;}
.ya{bottom:917.175000px;}
.yfe{bottom:917.895000px;}
.y56{bottom:927.975000px;}
.y173{bottom:929.055000px;}
.y6e{bottom:934.095000px;}
.y30{bottom:936.615000px;}
.yc9{bottom:938.055000px;}
.y100{bottom:942.015000px;}
.y12a{bottom:943.095000px;}
.y9{bottom:944.895000px;}
.y172{bottom:949.935000px;}
.y55{bottom:951.735000px;}
.y6d{bottom:957.885000px;}
.ycb{bottom:962.205000px;}
.yfc{bottom:966.165000px;}
.y129{bottom:966.885000px;}
.y171{bottom:970.845000px;}
.y8{bottom:972.645000px;}
.y2f{bottom:975.525000px;}
.y6c{bottom:981.645000px;}
.yc5{bottom:985.965000px;}
.yfd{bottom:989.925000px;}
.y128{bottom:990.645000px;}
.y6{bottom:996.405000px;}
.y14d{bottom:996.765000px;}
.y54{bottom:999.285000px;}
.y6b{bottom:1005.765000px;}
.y170{bottom:1006.125000px;}
.yc8{bottom:1010.085000px;}
.y2e{bottom:1013.325000px;}
.yfb{bottom:1014.045000px;}
.y127{bottom:1014.405000px;}
.y5{bottom:1015.845000px;}
.y14c{bottom:1020.525000px;}
.y16f{bottom:1027.005000px;}
.y6a{bottom:1029.525000px;}
.yc7{bottom:1034.205000px;}
.y4{bottom:1038.165000px;}
.y14b{bottom:1044.285000px;}
.y2d{bottom:1048.245000px;}
.yc3{bottom:1057.965000px;}
.y3{bottom:1060.125000px;}
.yfa{bottom:1061.925000px;}
.y16e{bottom:1062.645000px;}
.y2c{bottom:1068.045000px;}
.y53{bottom:1077.045000px;}
.ybf{bottom:1081.410000px;}
.y2{bottom:1082.130000px;}
.y16d{bottom:1083.570000px;}
.yf9{bottom:1086.090000px;}
.y69{bottom:1092.210000px;}
.y1{bottom:1099.770000px;}
.y126{bottom:1100.850000px;}
.y2b{bottom:1103.010000px;}
.yf8{bottom:1110.210000px;}
.y52{bottom:1115.970000px;}
.y16c{bottom:1118.850000px;}
.y2a{bottom:1122.810000px;}
.yf7{bottom:1133.970000px;}
.y51{bottom:1139.730000px;}
.y16b{bottom:1140.090000px;}
.y29{bottom:1142.610000px;}
.h1d{height:22.320000px;}
.h21{height:22.356000px;}
.h1e{height:22.680000px;}
.h1a{height:22.716000px;}
.h2a{height:30.015000px;}
.h18{height:37.800000px;}
.ha{height:43.735781px;}
.h9{height:43.794844px;}
.h25{height:46.440000px;}
.h1f{height:46.476000px;}
.h7{height:47.901094px;}
.h19{height:47.965781px;}
.hb{height:49.848750px;}
.hd{height:52.066406px;}
.hf{height:52.136719px;}
.hc{height:52.417969px;}
.h14{height:54.426094px;}
.h15{height:54.569320px;}
.h1b{height:54.596250px;}
.h17{height:56.029219px;}
.h2b{height:57.558516px;}
.he{height:59.343750px;}
.h5{height:60.478594px;}
.h6{height:60.479297px;}
.h12{height:61.723828px;}
.h4{height:63.019687px;}
.h2{height:64.875938px;}
.h11{height:65.884219px;}
.h8{height:67.824844px;}
.h26{height:70.200000px;}
.h1c{height:70.560000px;}
.h3{height:73.722656px;}
.h28{height:94.356000px;}
.h16{height:103.506094px;}
.h22{height:118.476000px;}
.h23{height:118.836000px;}
.h24{height:166.710000px;}
.h20{height:214.590000px;}
.h29{height:263.520000px;}
.h27{height:382.785000px;}
.h13{height:393.480000px;}
.h10{height:500.910000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:52.236000px;}
.w7{width:67.716000px;}
.w8{width:69.120000px;}
.w9{width:73.836000px;}
.wb{width:86.796000px;}
.w5{width:143.352000px;}
.w6{width:194.835000px;}
.w3{width:610.095000px;}
.wc{width:648.360000px;}
.w4{width:660.240000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x40{left:5.400000px;}
.x45{left:8.640000px;}
.x56{left:9.792000px;}
.x49{left:13.320000px;}
.x50{left:15.120000px;}
.x42{left:16.200000px;}
.x47{left:17.640000px;}
.x44{left:19.125000px;}
.x4f{left:20.160000px;}
.x3f{left:22.680000px;}
.x4c{left:28.080000px;}
.x4a{left:29.880000px;}
.x4b{left:31.365000px;}
.x38{left:33.870000px;}
.x51{left:34.920000px;}
.x4e{left:37.800000px;}
.x20{left:39.855000px;}
.x4d{left:43.200000px;}
.x3b{left:45.036000px;}
.x1f{left:46.695000px;}
.x57{left:66.885000px;}
.x15{left:69.225000px;}
.x3d{left:73.080000px;}
.x21{left:80.790000px;}
.x3a{left:85.716000px;}
.x16{left:92.445000px;}
.x22{left:100.725000px;}
.x6{left:106.235987px;}
.x53{left:108.105000px;}
.x8{left:109.115987px;}
.x52{left:117.000000px;}
.x23{left:120.675000px;}
.xf{left:127.476000px;}
.xd{left:133.271987px;}
.x9{left:135.791987px;}
.x12{left:141.191987px;}
.x13{left:160.274987px;}
.xb{left:180.794987px;}
.x24{left:200.445000px;}
.x25{left:220.425000px;}
.x3c{left:229.785000px;}
.x26{left:240.375000px;}
.x17{left:248.790000px;}
.x54{left:255.495000px;}
.x2{left:260.384987px;}
.x18{left:271.980000px;}
.x11{left:277.304987px;}
.x27{left:280.260000px;}
.x39{left:293.070000px;}
.x28{left:300.210000px;}
.x10{left:305.064000px;}
.x19{left:311.865000px;}
.x29{left:320.145000px;}
.x58{left:323.850000px;}
.x1a{left:331.815000px;}
.x2a{left:340.095000px;}
.x5{left:350.789987px;}
.x2b{left:360.075000px;}
.xa{left:380.669987px;}
.x4{left:383.909987px;}
.x1b{left:391.680000px;}
.x2c{left:399.960000px;}
.x3{left:403.019987px;}
.x1c{left:411.630000px;}
.x2d{left:419.910000px;}
.x3e{left:425.340000px;}
.x7{left:430.379987px;}
.x2e{left:439.845000px;}
.xc{left:446.579987px;}
.x2f{left:459.795000px;}
.x30{left:479.730000px;}
.x1d{left:488.160000px;}
.x41{left:493.770000px;}
.x31{left:499.680000px;}
.x1e{left:511.350000px;}
.x32{left:519.660000px;}
.x33{left:539.610000px;}
.x55{left:550.335000px;}
.x34{left:559.545000px;}
.x43{left:563.610000px;}
.x35{left:579.495000px;}
.x36{left:599.430000px;}
.x37{left:619.380000px;}
.x46{left:638.175000px;}
.x48{left:691.485000px;}
.xe{left:752.729987px;}
.x1{left:786.929987px;}
.x14{left:794.489987px;}
@media print{
.v4{vertical-align:-43.626667pt;}
.v2{vertical-align:-26.880000pt;}
.v7{vertical-align:-24.320000pt;}
.v5{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.v6{vertical-align:43.626667pt;}
.lsc{letter-spacing:-1.264000pt;}
.lsd{letter-spacing:-1.152000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.432533pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.405333pt;}
.ls4{letter-spacing:-0.394133pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.340267pt;}
.ls1b{letter-spacing:-0.286933pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls1c{letter-spacing:-0.158933pt;}
.ls16{letter-spacing:-0.135467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.414933pt;}
.lse{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls19{letter-spacing:1.408000pt;}
.lsb{letter-spacing:7.040000pt;}
.ls18{letter-spacing:29.568000pt;}
.lsa{letter-spacing:29.578667pt;}
.ls13{letter-spacing:46.154624pt;}
.ls11{letter-spacing:46.207957pt;}
.ls10{letter-spacing:46.219520pt;}
.lsf{letter-spacing:46.272853pt;}
.ls12{letter-spacing:46.379520pt;}
.wsd{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.584533pt;}
.ws0{word-spacing:-14.464000pt;}
.ws13{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.016000pt;}
.ws8{word-spacing:-13.890667pt;}
.wsa{word-spacing:-13.854933pt;}
.ws7{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.007467pt;}
.ws6{word-spacing:-12.894613pt;}
.ws2{word-spacing:-12.334187pt;}
.wsc{word-spacing:-12.176000pt;}
.ws11{word-spacing:-11.021568pt;}
.ws10{word-spacing:-10.992640pt;}
.wse{word-spacing:-10.560000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsb{word-spacing:0.000000pt;}
.wsf{word-spacing:35.226880pt;}
._f{margin-left:-4.907520pt;}
._e{margin-left:-3.904000pt;}
._17{margin-left:-2.893653pt;}
._4{margin-left:-1.990827pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.280000pt;}
._5{width:2.420907pt;}
._7{width:3.819947pt;}
._8{width:5.216853pt;}
._9{width:6.829227pt;}
._2{width:7.948800pt;}
._3{width:9.433600pt;}
._6{width:11.138560pt;}
._c{width:12.032000pt;}
._10{width:14.538667pt;}
._b{width:17.792000pt;}
._a{width:18.688000pt;}
._14{width:20.224000pt;}
._15{width:21.382827pt;}
._16{width:22.709333pt;}
._d{width:30.016000pt;}
._12{width:89.574400pt;}
._13{width:113.234773pt;}
._11{width:117.916587pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs8{font-size:48.768000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:3.200000pt;}
.yf5{bottom:4.794667pt;}
.yc4{bottom:4.800000pt;}
.yd8{bottom:4.826667pt;}
.yf2{bottom:4.840000pt;}
.yc0{bottom:11.520000pt;}
.yed{bottom:15.360000pt;}
.yca{bottom:15.386667pt;}
.y14a{bottom:15.520000pt;}
.yff{bottom:15.680000pt;}
.yc1{bottom:20.160000pt;}
.y106{bottom:25.920000pt;}
.yc6{bottom:26.240000pt;}
.y11f{bottom:36.840000pt;}
.ybe{bottom:41.373333pt;}
.y149{bottom:42.106667pt;}
.yf0{bottom:47.354667pt;}
.yd6{bottom:47.360000pt;}
.ydd{bottom:47.680000pt;}
.y7{bottom:50.880000pt;}
.y143{bottom:57.733333pt;}
.y28{bottom:67.872000pt;}
.ye5{bottom:68.826667pt;}
.yb9{bottom:83.840000pt;}
.y13d{bottom:85.792000pt;}
.yef{bottom:87.072000pt;}
.ya6{bottom:87.173333pt;}
.y50{bottom:88.672000pt;}
.yb8{bottom:88.773333pt;}
.y144{bottom:89.306667pt;}
.ya8{bottom:89.600000pt;}
.ycd{bottom:90.240000pt;}
.ya3{bottom:90.466667pt;}
.ya9{bottom:91.293333pt;}
.yac{bottom:93.466667pt;}
.y84{bottom:94.752000pt;}
.y125{bottom:95.392000pt;}
.ya7{bottom:95.546667pt;}
.yb2{bottom:96.573333pt;}
.y65{bottom:97.312000pt;}
.yaa{bottom:97.946667pt;}
.ya5{bottom:100.186667pt;}
.ya4{bottom:102.173333pt;}
.ybc{bottom:103.746667pt;}
.yb0{bottom:105.693333pt;}
.y91{bottom:105.952000pt;}
.y27{bottom:106.592000pt;}
.y13c{bottom:106.912000pt;}
.yaf{bottom:107.493333pt;}
.yf6{bottom:108.192000pt;}
.yb4{bottom:108.613333pt;}
.yb3{bottom:109.466667pt;}
.yb5{bottom:109.573333pt;}
.y4f{bottom:109.792000pt;}
.yab{bottom:111.013333pt;}
.y123{bottom:111.712000pt;}
.yba{bottom:112.666667pt;}
.ya2{bottom:113.466667pt;}
.yb1{bottom:115.133333pt;}
.y83{bottom:115.872000pt;}
.yae{bottom:116.160000pt;}
.yb7{bottom:117.440000pt;}
.y64{bottom:118.432000pt;}
.y145{bottom:120.893333pt;}
.yad{bottom:121.733333pt;}
.y26{bottom:124.192000pt;}
.ybb{bottom:125.213333pt;}
.y16a{bottom:126.432000pt;}
.yb6{bottom:126.786667pt;}
.y13b{bottom:128.032000pt;}
.yf4{bottom:129.632000pt;}
.y4e{bottom:130.912000pt;}
.y18d{bottom:131.872000pt;}
.y124{bottom:133.152000pt;}
.y82{bottom:136.986667pt;}
.y90{bottom:140.186667pt;}
.y169{bottom:145.306667pt;}
.y13a{bottom:149.146667pt;}
.y18c{bottom:150.746667pt;}
.yf3{bottom:151.066667pt;}
.y146{bottom:152.480000pt;}
.y63{bottom:152.986667pt;}
.y141{bottom:154.533333pt;}
.y11e{bottom:154.586667pt;}
.y25{bottom:155.226667pt;}
.ybd{bottom:159.586667pt;}
.y140{bottom:161.920000pt;}
.y10e{bottom:164.866667pt;}
.y4d{bottom:165.466667pt;}
.y81{bottom:171.546667pt;}
.y9b{bottom:171.933333pt;}
.yf1{bottom:172.186667pt;}
.y24{bottom:172.826667pt;}
.y8f{bottom:174.746667pt;}
.y122{bottom:175.746667pt;}
.y168{bottom:176.706667pt;}
.y18b{bottom:182.146667pt;}
.y139{bottom:183.746667pt;}
.y147{bottom:184.066667pt;}
.y4c{bottom:186.626667pt;}
.y62{bottom:187.266667pt;}
.y96{bottom:190.053333pt;}
.yec{bottom:193.666667pt;}
.y142{bottom:194.586667pt;}
.y167{bottom:195.266667pt;}
.y98{bottom:195.520000pt;}
.y121{bottom:197.186667pt;}
.y9c{bottom:199.226667pt;}
.y94{bottom:200.960000pt;}
.y18a{bottom:201.026667pt;}
.y23{bottom:203.906667pt;}
.y138{bottom:204.866667pt;}
.y80{bottom:206.146667pt;}
.y4b{bottom:208.066667pt;}
.y68{bottom:208.706667pt;}
.y13f{bottom:209.306667pt;}
.y8e{bottom:209.346667pt;}
.y99{bottom:211.866667pt;}
.y166{bottom:213.826667pt;}
.yee{bottom:215.106667pt;}
.y148{bottom:215.653333pt;}
.y120{bottom:218.626667pt;}
.y22{bottom:221.506667pt;}
.y61{bottom:221.826667pt;}
.y137{bottom:225.986667pt;}
.y9d{bottom:226.533333pt;}
.y7f{bottom:227.266667pt;}
.y97{bottom:228.253333pt;}
.y4a{bottom:229.186667pt;}
.y189{bottom:232.386667pt;}
.ye4{bottom:236.226667pt;}
.y67{bottom:238.466667pt;}
.y21{bottom:239.106667pt;}
.y93{bottom:239.706667pt;}
.y10d{bottom:239.746667pt;}
.y60{bottom:242.946667pt;}
.y8d{bottom:243.906667pt;}
.y165{bottom:245.186667pt;}
.y136{bottom:247.106667pt;}
.y7e{bottom:248.386667pt;}
.y95{bottom:250.106667pt;}
.y49{bottom:250.306667pt;}
.y188{bottom:250.946667pt;}
.y9e{bottom:253.826667pt;}
.y20{bottom:256.706667pt;}
.yeb{bottom:257.666667pt;}
.y11d{bottom:261.186667pt;}
.y164{bottom:263.746667pt;}
.y135{bottom:268.226667pt;}
.y48{bottom:271.426667pt;}
.y5f{bottom:277.506667pt;}
.y8c{bottom:278.466667pt;}
.yea{bottom:279.106667pt;}
.y9f{bottom:281.120000pt;}
.y163{bottom:282.306667pt;}
.y11c{bottom:282.626667pt;}
.y7d{bottom:282.946667pt;}
.y1f{bottom:287.773333pt;}
.y134{bottom:289.693333pt;}
.ye9{bottom:300.253333pt;}
.y187{bottom:301.213333pt;}
.y11b{bottom:303.773333pt;}
.y47{bottom:306.013333pt;}
.ya0{bottom:308.413333pt;}
.y5e{bottom:312.093333pt;}
.y8b{bottom:312.733333pt;}
.y7c{bottom:313.693333pt;}
.y162{bottom:316.573333pt;}
.y1e{bottom:318.813333pt;}
.y186{bottom:319.453333pt;}
.y9a{bottom:321.053333pt;}
.ye8{bottom:321.693333pt;}
.y133{bottom:323.933333pt;}
.y11a{bottom:325.213333pt;}
.y46{bottom:327.133333pt;}
.y5d{bottom:333.213333pt;}
.y8a{bottom:333.853333pt;}
.ya1{bottom:335.706667pt;}
.ye7{bottom:343.133333pt;}
.y132{bottom:345.053333pt;}
.y119{bottom:346.653333pt;}
.y7b{bottom:347.293333pt;}
.y45{bottom:348.253333pt;}
.y1d{bottom:349.853333pt;}
.y161{bottom:351.133333pt;}
.y66{bottom:353.693333pt;}
.y89{bottom:355.293333pt;}
.ye6{bottom:364.253333pt;}
.y131{bottom:366.493333pt;}
.y1c{bottom:367.453333pt;}
.y118{bottom:367.773333pt;}
.y44{bottom:369.373333pt;}
.y185{bottom:369.693333pt;}
.y160{bottom:372.253333pt;}
.y7a{bottom:381.853333pt;}
.ye3{bottom:385.693333pt;}
.y130{bottom:387.613333pt;}
.y184{bottom:388.253333pt;}
.y117{bottom:389.213333pt;}
.y88{bottom:389.533333pt;}
.y43{bottom:390.493333pt;}
.y1b{bottom:398.173333pt;}
.y15f{bottom:406.533333pt;}
.ye2{bottom:407.173333pt;}
.y12f{bottom:408.773333pt;}
.y116{bottom:410.693333pt;}
.y42{bottom:411.653333pt;}
.y1a{bottom:415.813333pt;}
.y79{bottom:416.453333pt;}
.y87{bottom:424.133333pt;}
.y15e{bottom:427.973333pt;}
.ydc{bottom:428.293333pt;}
.y12e{bottom:429.893333pt;}
.y115{bottom:431.813333pt;}
.y41{bottom:432.773333pt;}
.y19{bottom:433.733333pt;}
.y183{bottom:437.893333pt;}
.y86{bottom:445.253333pt;}
.ye1{bottom:449.733333pt;}
.y78{bottom:451.013333pt;}
.y114{bottom:453.253333pt;}
.y182{bottom:456.773333pt;}
.y15d{bottom:461.893333pt;}
.y18{bottom:464.453333pt;}
.y40{bottom:467.333333pt;}
.ye0{bottom:471.173333pt;}
.y113{bottom:474.693333pt;}
.y85{bottom:476.293333pt;}
.y92{bottom:476.800000pt;}
.y15c{bottom:481.093333pt;}
.y17{bottom:482.053333pt;}
.y77{bottom:485.253333pt;}
.y12d{bottom:485.573333pt;}
.y181{bottom:488.133333pt;}
.y3f{bottom:488.453333pt;}
.ydf{bottom:492.293333pt;}
.y112{bottom:495.813333pt;}
.y15b{bottom:500.613333pt;}
.y180{bottom:506.693333pt;}
.y3e{bottom:509.573333pt;}
.y16{bottom:513.120000pt;}
.yde{bottom:513.760000pt;}
.y111{bottom:517.280000pt;}
.y12c{bottom:519.520000pt;}
.y76{bottom:519.840000pt;}
.y15a{bottom:520.160000pt;}
.y3d{bottom:531.040000pt;}
.yd5{bottom:535.200000pt;}
.y17f{bottom:538.400000pt;}
.y110{bottom:538.720000pt;}
.y159{bottom:539.360000pt;}
.y15{bottom:544.160000pt;}
.y3c{bottom:552.160000pt;}
.y12b{bottom:552.800000pt;}
.y75{bottom:554.400000pt;}
.ydb{bottom:556.320000pt;}
.y17e{bottom:556.960000pt;}
.y158{bottom:558.880000pt;}
.y10f{bottom:559.840000pt;}
.y14{bottom:561.760000pt;}
.y13e{bottom:568.000000pt;}
.y3b{bottom:573.280000pt;}
.yda{bottom:577.760000pt;}
.y13{bottom:579.360000pt;}
.y10b{bottom:581.280000pt;}
.y5c{bottom:583.200000pt;}
.y17d{bottom:588.320000pt;}
.y74{bottom:588.960000pt;}
.y157{bottom:592.160000pt;}
.y12{bottom:596.960000pt;}
.yd9{bottom:599.200000pt;}
.y10c{bottom:602.720000pt;}
.y17c{bottom:607.200000pt;}
.y3a{bottom:607.840000pt;}
.y156{bottom:613.280000pt;}
.y5b{bottom:617.760000pt;}
.yd7{bottom:620.320000pt;}
.y73{bottom:623.226667pt;}
.y109{bottom:623.866667pt;}
.y39{bottom:628.986667pt;}
.y11{bottom:633.466667pt;}
.y155{bottom:634.426667pt;}
.y17b{bottom:638.586667pt;}
.ycc{bottom:641.786667pt;}
.y10a{bottom:645.306667pt;}
.y38{bottom:650.106667pt;}
.y5a{bottom:652.346667pt;}
.y17a{bottom:657.146667pt;}
.y72{bottom:657.786667pt;}
.yd4{bottom:663.226667pt;}
.y105{bottom:666.746667pt;}
.y154{bottom:668.986667pt;}
.y10{bottom:669.306667pt;}
.y37{bottom:671.226667pt;}
.y179{bottom:675.706667pt;}
.yd3{bottom:684.346667pt;}
.yf{bottom:686.586667pt;}
.y59{bottom:686.906667pt;}
.y108{bottom:687.866667pt;}
.y71{bottom:692.346667pt;}
.y153{bottom:703.226667pt;}
.ye{bottom:703.546667pt;}
.y36{bottom:705.786667pt;}
.y178{bottom:707.066667pt;}
.y107{bottom:709.306667pt;}
.y58{bottom:721.466667pt;}
.y152{bottom:724.666667pt;}
.y177{bottom:725.946667pt;}
.y35{bottom:726.906667pt;}
.yd2{bottom:727.226667pt;}
.y104{bottom:730.746667pt;}
.yd{bottom:733.626667pt;}
.y176{bottom:744.226667pt;}
.y151{bottom:745.826667pt;}
.y34{bottom:748.066667pt;}
.yd1{bottom:748.386667pt;}
.y103{bottom:751.906667pt;}
.y57{bottom:755.746667pt;}
.y70{bottom:761.506667pt;}
.yc{bottom:763.746667pt;}
.y150{bottom:766.946667pt;}
.y33{bottom:769.186667pt;}
.yd0{bottom:769.826667pt;}
.y101{bottom:773.346667pt;}
.y175{bottom:775.586667pt;}
.yb{bottom:780.706667pt;}
.y14f{bottom:788.066667pt;}
.y32{bottom:790.306667pt;}
.ycf{bottom:791.266667pt;}
.y174{bottom:794.466667pt;}
.y102{bottom:794.786667pt;}
.y6f{bottom:795.746667pt;}
.y14e{bottom:809.186667pt;}
.y31{bottom:811.426667pt;}
.yce{bottom:812.386667pt;}
.ya{bottom:815.266667pt;}
.yfe{bottom:815.906667pt;}
.y56{bottom:824.866667pt;}
.y173{bottom:825.826667pt;}
.y6e{bottom:830.306667pt;}
.y30{bottom:832.546667pt;}
.yc9{bottom:833.826667pt;}
.y100{bottom:837.346667pt;}
.y12a{bottom:838.306667pt;}
.y9{bottom:839.906667pt;}
.y172{bottom:844.386667pt;}
.y55{bottom:845.986667pt;}
.y6d{bottom:851.453333pt;}
.ycb{bottom:855.293333pt;}
.yfc{bottom:858.813333pt;}
.y129{bottom:859.453333pt;}
.y171{bottom:862.973333pt;}
.y8{bottom:864.573333pt;}
.y2f{bottom:867.133333pt;}
.y6c{bottom:872.573333pt;}
.yc5{bottom:876.413333pt;}
.yfd{bottom:879.933333pt;}
.y128{bottom:880.573333pt;}
.y6{bottom:885.693333pt;}
.y14d{bottom:886.013333pt;}
.y54{bottom:888.253333pt;}
.y6b{bottom:894.013333pt;}
.y170{bottom:894.333333pt;}
.yc8{bottom:897.853333pt;}
.y2e{bottom:900.733333pt;}
.yfb{bottom:901.373333pt;}
.y127{bottom:901.693333pt;}
.y5{bottom:902.973333pt;}
.y14c{bottom:907.133333pt;}
.y16f{bottom:912.893333pt;}
.y6a{bottom:915.133333pt;}
.yc7{bottom:919.293333pt;}
.y4{bottom:922.813333pt;}
.y14b{bottom:928.253333pt;}
.y2d{bottom:931.773333pt;}
.yc3{bottom:940.413333pt;}
.y3{bottom:942.333333pt;}
.yfa{bottom:943.933333pt;}
.y16e{bottom:944.573333pt;}
.y2c{bottom:949.373333pt;}
.y53{bottom:957.373333pt;}
.ybf{bottom:961.253333pt;}
.y2{bottom:961.893333pt;}
.y16d{bottom:963.173333pt;}
.yf9{bottom:965.413333pt;}
.y69{bottom:970.853333pt;}
.y1{bottom:977.573333pt;}
.y126{bottom:978.533333pt;}
.y2b{bottom:980.453333pt;}
.yf8{bottom:986.853333pt;}
.y52{bottom:991.973333pt;}
.y16c{bottom:994.533333pt;}
.y2a{bottom:998.053333pt;}
.yf7{bottom:1007.973333pt;}
.y51{bottom:1013.093333pt;}
.y16b{bottom:1013.413333pt;}
.y29{bottom:1015.653333pt;}
.h1d{height:19.840000pt;}
.h21{height:19.872000pt;}
.h1e{height:20.160000pt;}
.h1a{height:20.192000pt;}
.h2a{height:26.680000pt;}
.h18{height:33.600000pt;}
.ha{height:38.876250pt;}
.h9{height:38.928750pt;}
.h25{height:41.280000pt;}
.h1f{height:41.312000pt;}
.h7{height:42.578750pt;}
.h19{height:42.636250pt;}
.hb{height:44.310000pt;}
.hd{height:46.281250pt;}
.hf{height:46.343750pt;}
.hc{height:46.593750pt;}
.h14{height:48.378750pt;}
.h15{height:48.506062pt;}
.h1b{height:48.530000pt;}
.h17{height:49.803750pt;}
.h2b{height:51.163125pt;}
.he{height:52.750000pt;}
.h5{height:53.758750pt;}
.h6{height:53.759375pt;}
.h12{height:54.865625pt;}
.h4{height:56.017500pt;}
.h2{height:57.667500pt;}
.h11{height:58.563750pt;}
.h8{height:60.288750pt;}
.h26{height:62.400000pt;}
.h1c{height:62.720000pt;}
.h3{height:65.531250pt;}
.h28{height:83.872000pt;}
.h16{height:92.005417pt;}
.h22{height:105.312000pt;}
.h23{height:105.632000pt;}
.h24{height:148.186667pt;}
.h20{height:190.746667pt;}
.h29{height:234.240000pt;}
.h27{height:340.253333pt;}
.h13{height:349.760000pt;}
.h10{height:445.253333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:46.432000pt;}
.w7{width:60.192000pt;}
.w8{width:61.440000pt;}
.w9{width:65.632000pt;}
.wb{width:77.152000pt;}
.w5{width:127.424000pt;}
.w6{width:173.186667pt;}
.w3{width:542.306667pt;}
.wc{width:576.320000pt;}
.w4{width:586.880000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x40{left:4.800000pt;}
.x45{left:7.680000pt;}
.x56{left:8.704000pt;}
.x49{left:11.840000pt;}
.x50{left:13.440000pt;}
.x42{left:14.400000pt;}
.x47{left:15.680000pt;}
.x44{left:17.000000pt;}
.x4f{left:17.920000pt;}
.x3f{left:20.160000pt;}
.x4c{left:24.960000pt;}
.x4a{left:26.560000pt;}
.x4b{left:27.880000pt;}
.x38{left:30.106667pt;}
.x51{left:31.040000pt;}
.x4e{left:33.600000pt;}
.x20{left:35.426667pt;}
.x4d{left:38.400000pt;}
.x3b{left:40.032000pt;}
.x1f{left:41.506667pt;}
.x57{left:59.453333pt;}
.x15{left:61.533333pt;}
.x3d{left:64.960000pt;}
.x21{left:71.813333pt;}
.x3a{left:76.192000pt;}
.x16{left:82.173333pt;}
.x22{left:89.533333pt;}
.x6{left:94.431988pt;}
.x53{left:96.093333pt;}
.x8{left:96.991988pt;}
.x52{left:104.000000pt;}
.x23{left:107.266667pt;}
.xf{left:113.312000pt;}
.xd{left:118.463988pt;}
.x9{left:120.703988pt;}
.x12{left:125.503988pt;}
.x13{left:142.466655pt;}
.xb{left:160.706655pt;}
.x24{left:178.173333pt;}
.x25{left:195.933333pt;}
.x3c{left:204.253333pt;}
.x26{left:213.666667pt;}
.x17{left:221.146667pt;}
.x54{left:227.106667pt;}
.x2{left:231.453322pt;}
.x18{left:241.760000pt;}
.x11{left:246.493322pt;}
.x27{left:249.120000pt;}
.x39{left:260.506667pt;}
.x28{left:266.853333pt;}
.x10{left:271.168000pt;}
.x19{left:277.213333pt;}
.x29{left:284.573333pt;}
.x58{left:287.866667pt;}
.x1a{left:294.946667pt;}
.x2a{left:302.306667pt;}
.x5{left:311.813322pt;}
.x2b{left:320.066667pt;}
.xa{left:338.373322pt;}
.x4{left:341.253322pt;}
.x1b{left:348.160000pt;}
.x2c{left:355.520000pt;}
.x3{left:358.239988pt;}
.x1c{left:365.893333pt;}
.x2d{left:373.253333pt;}
.x3e{left:378.080000pt;}
.x7{left:382.559988pt;}
.x2e{left:390.973333pt;}
.xc{left:396.959988pt;}
.x2f{left:408.706667pt;}
.x30{left:426.426667pt;}
.x1d{left:433.920000pt;}
.x41{left:438.906667pt;}
.x31{left:444.160000pt;}
.x1e{left:454.533333pt;}
.x32{left:461.920000pt;}
.x33{left:479.653333pt;}
.x55{left:489.186667pt;}
.x34{left:497.373333pt;}
.x43{left:500.986667pt;}
.x35{left:515.106667pt;}
.x36{left:532.826667pt;}
.x37{left:550.560000pt;}
.x46{left:567.266667pt;}
.x48{left:614.653333pt;}
.xe{left:669.093322pt;}
.x1{left:699.493322pt;}
.x14{left:706.213322pt;}
}




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