
    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_81f0a4971bd7063aae7e6e3f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_e23e04d72b44848cbe93c223.woff')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_0de4e0e50e9fafd8eea407e4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_67000d13ff7b8c7b72184dd4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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_e42ecb22b32342a800efada2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_db8a376dba0132dab2a45ed6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2e3452963df02c4e5b3e14e1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0e4616264d80a61a449be0b6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_b9ad8cdb1c5065e972756eb5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.867676;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.696000px;}
.ls17{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.247800px;}
.lse{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.181200px;}
.ls1e{letter-spacing:-0.175800px;}
.ls12{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.078600px;}
.ls11{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000003px;}
.ls7{letter-spacing:0.023040px;}
.ls1c{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.224400px;}
.ls5{letter-spacing:0.270600px;}
.ls8{letter-spacing:0.270720px;}
.ls16{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.ls6{letter-spacing:4.320000px;}
.ls4{letter-spacing:7.200000px;}
.lsf{letter-spacing:11.520000px;}
.ls9{letter-spacing:19.440000px;}
.ls1d{letter-spacing:1495.200000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.900080px;}
.ws16{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.648000px;}
.ws14{word-spacing:-18.288000px;}
.ws15{word-spacing:-18.216000px;}
.ws17{word-spacing:-18.072000px;}
.wsf{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.550600px;}
.ws7{word-spacing:-17.504400px;}
.ws9{word-spacing:-17.303040px;}
.ws5{word-spacing:-17.280003px;}
.ws6{word-spacing:-17.280000px;}
.wsa{word-spacing:-17.032200px;}
.wsc{word-spacing:-16.584000px;}
.wsb{word-spacing:-16.560000px;}
.wse{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.427160px;}
.wsd{word-spacing:-13.284000px;}
.ws3{word-spacing:-13.229520px;}
.ws18{word-spacing:-12.186000px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-14.400000px;}
._1a{margin-left:-5.256000px;}
._13{margin-left:-3.594240px;}
._f{margin-left:-2.280960px;}
._5{margin-left:-1.132560px;}
._0{width:1.051200px;}
._4{width:2.594160px;}
._e{width:4.041360px;}
._12{width:5.121360px;}
._d{width:6.292800px;}
._2{width:7.315200px;}
._3{width:8.904240px;}
._8{width:10.208160px;}
._a{width:12.036240px;}
._11{width:13.745280px;}
._10{width:15.068160px;}
._9{width:16.314480px;}
._14{width:18.662400px;}
._6{width:19.864800px;}
._1c{width:21.319200px;}
._18{width:22.392000px;}
._19{width:23.616000px;}
._15{width:25.613760px;}
._16{width:26.650800px;}
._1b{width:28.398240px;}
._1{width:29.700720px;}
._7{width:31.214160px;}
._21{width:32.446800px;}
._20{width:40.752000px;}
._1f{width:42.120000px;}
._b{width:43.220400px;}
._c{width:44.363040px;}
._22{width:55.080000px;}
._23{width:56.392800px;}
._1e{width:69.604560px;}
._1d{width:70.848000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y174{bottom:-105.156000px;}
.y2f{bottom:-83.745000px;}
.y22{bottom:-72.945000px;}
.y173{bottom:-68.796000px;}
.y2e{bottom:-56.565000px;}
.y21{bottom:-36.585000px;}
.y2d{bottom:-33.705000px;}
.y172{bottom:-32.976000px;}
.y171{bottom:-16.380000px;}
.y2c{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:2.880000px;}
.y98{bottom:3.060000px;}
.y9{bottom:3.780000px;}
.y13d{bottom:6.660000px;}
.yb{bottom:7.560000px;}
.y8{bottom:9.540000px;}
.y2b{bottom:11.880000px;}
.y170{bottom:17.820000px;}
.y1f{bottom:18.000000px;}
.y7{bottom:18.180000px;}
.y26{bottom:22.755000px;}
.y2a{bottom:34.740000px;}
.y1e{bottom:36.360000px;}
.yf{bottom:36.900000px;}
.y16f{bottom:41.400000px;}
.ye{bottom:43.560000px;}
.y6{bottom:50.580000px;}
.y24{bottom:53.100000px;}
.y1d{bottom:54.720000px;}
.y29{bottom:57.420000px;}
.y16e{bottom:65.154000px;}
.y95{bottom:70.380000px;}
.y1c{bottom:73.080000px;}
.y60{bottom:76.860000px;}
.ybf{bottom:78.120000px;}
.y16d{bottom:79.734000px;}
.y28{bottom:80.280000px;}
.y5f{bottom:81.360000px;}
.ye0{bottom:88.056000px;}
.y13c{bottom:90.036000px;}
.y7b{bottom:91.116000px;}
.y121{bottom:99.396000px;}
.y5e{bottom:101.376000px;}
.y16c{bottom:103.314000px;}
.ya8{bottom:104.076000px;}
.y5d{bottom:105.876000px;}
.y153{bottom:107.316000px;}
.ybe{bottom:109.116000px;}
.y1b{bottom:109.260000px;}
.y13b{bottom:110.736000px;}
.ydf{bottom:119.016000px;}
.y120{bottom:120.096000px;}
.yfd{bottom:121.176000px;}
.y7a{bottom:122.076000px;}
.yd0{bottom:124.056000px;}
.y5c{bottom:126.936000px;}
.y16b{bottom:127.074000px;}
.y1a{bottom:127.620000px;}
.y13a{bottom:131.436000px;}
.y94{bottom:132.516000px;}
.ya7{bottom:135.216000px;}
.ybd{bottom:140.256000px;}
.y11f{bottom:140.796000px;}
.yfc{bottom:141.876000px;}
.y19{bottom:145.980000px;}
.yde{bottom:150.150000px;}
.y16a{bottom:150.654000px;}
.y79{bottom:153.210000px;}
.ycf{bottom:155.010000px;}
.yd{bottom:156.090000px;}
.yfb{bottom:162.570000px;}
.y93{bottom:163.470000px;}
.y18{bottom:164.160000px;}
.ya6{bottom:166.170000px;}
.y139{bottom:167.250000px;}
.ybc{bottom:171.210000px;}
.y5b{bottom:171.930000px;}
.y169{bottom:174.414000px;}
.y11e{bottom:176.430000px;}
.ydd{bottom:181.110000px;}
.y17{bottom:182.520000px;}
.y78{bottom:184.170000px;}
.yce{bottom:186.150000px;}
.y138{bottom:187.950000px;}
.y168{bottom:188.994000px;}
.y5a{bottom:191.730000px;}
.y92{bottom:194.610000px;}
.y11d{bottom:197.130000px;}
.ya5{bottom:197.310000px;}
.yfa{bottom:201.270000px;}
.ybb{bottom:202.350000px;}
.ydc{bottom:212.250000px;}
.y167{bottom:212.574000px;}
.y77{bottom:215.310000px;}
.ycd{bottom:217.110000px;}
.y16{bottom:218.880000px;}
.y59{bottom:220.530000px;}
.yf9{bottom:221.970000px;}
.y137{bottom:223.590000px;}
.y91{bottom:225.570000px;}
.ya4{bottom:228.270000px;}
.y11c{bottom:232.950000px;}
.yba{bottom:233.310000px;}
.y166{bottom:236.334000px;}
.y15{bottom:237.240000px;}
.y58{bottom:240.330000px;}
.ydb{bottom:243.210000px;}
.y136{bottom:244.290000px;}
.y76{bottom:246.270000px;}
.ya3{bottom:247.530000px;}
.ycc{bottom:248.250000px;}
.y165{bottom:250.959000px;}
.y11b{bottom:253.650000px;}
.y14{bottom:255.450000px;}
.y90{bottom:256.530000px;}
.ya2{bottom:259.590000px;}
.y57{bottom:260.310000px;}
.yf8{bottom:260.670000px;}
.yb9{bottom:264.450000px;}
.y13{bottom:273.810000px;}
.yda{bottom:274.350000px;}
.y164{bottom:274.899000px;}
.ya1{bottom:275.970000px;}
.y75{bottom:277.230000px;}
.ycb{bottom:279.210000px;}
.y135{bottom:279.930000px;}
.y56{bottom:280.110000px;}
.yf7{bottom:281.370000px;}
.y8f{bottom:287.670000px;}
.y11a{bottom:289.290000px;}
.ya0{bottom:292.170000px;}
.yb8{bottom:295.410000px;}
.y55{bottom:299.910000px;}
.yd9{bottom:305.310000px;}
.y74{bottom:308.370000px;}
.y163{bottom:309.099000px;}
.y119{bottom:309.990000px;}
.yca{bottom:310.350000px;}
.y134{bottom:315.750000px;}
.y8e{bottom:318.630000px;}
.y54{bottom:319.710000px;}
.yf6{bottom:320.070000px;}
.y162{bottom:323.679000px;}
.y9f{bottom:324.750000px;}
.yb7{bottom:326.550000px;}
.y118{bottom:330.690000px;}
.yd8{bottom:336.450000px;}
.y73{bottom:339.330000px;}
.y53{bottom:339.510000px;}
.yf5{bottom:340.770000px;}
.y9e{bottom:340.950000px;}
.yc9{bottom:341.310000px;}
.y161{bottom:347.439000px;}
.y8d{bottom:349.815000px;}
.y9d{bottom:357.375000px;}
.yb6{bottom:357.555000px;}
.y52{bottom:359.535000px;}
.y27{bottom:360.255000px;}
.y117{bottom:366.375000px;}
.yd7{bottom:367.455000px;}
.y72{bottom:370.515000px;}
.y160{bottom:371.019000px;}
.y133{bottom:372.135000px;}
.yc8{bottom:372.495000px;}
.y9c{bottom:373.575000px;}
.y152{bottom:375.735000px;}
.y51{bottom:379.335000px;}
.yf4{bottom:379.515000px;}
.y8c{bottom:380.775000px;}
.y116{bottom:387.075000px;}
.yb5{bottom:388.695000px;}
.y9b{bottom:389.955000px;}
.y132{bottom:392.835000px;}
.y15f{bottom:394.779000px;}
.yd6{bottom:398.595000px;}
.y50{bottom:399.135000px;}
.y71{bottom:401.475000px;}
.yc7{bottom:403.455000px;}
.y99{bottom:406.155000px;}
.y115{bottom:407.775000px;}
.y8b{bottom:411.915000px;}
.yf3{bottom:418.215000px;}
.y15e{bottom:418.359000px;}
.y4f{bottom:418.935000px;}
.yb4{bottom:419.655000px;}
.y97{bottom:422.355000px;}
.y151{bottom:426.855000px;}
.y131{bottom:428.475000px;}
.yd5{bottom:429.555000px;}
.y70{bottom:432.615000px;}
.y15d{bottom:432.939000px;}
.yc6{bottom:434.595000px;}
.y4e{bottom:438.735000px;}
.yf2{bottom:438.915000px;}
.y96{bottom:442.695000px;}
.y8a{bottom:442.875000px;}
.y114{bottom:443.595000px;}
.y130{bottom:449.175000px;}
.yb3{bottom:450.795000px;}
.y15c{bottom:456.699000px;}
.y4d{bottom:458.715000px;}
.yd4{bottom:460.695000px;}
.y150{bottom:462.675000px;}
.y6f{bottom:463.575000px;}
.y113{bottom:464.295000px;}
.yc5{bottom:465.555000px;}
.y23{bottom:465.915000px;}
.y25{bottom:466.020000px;}
.y89{bottom:474.015000px;}
.yf1{bottom:477.615000px;}
.y4c{bottom:478.515000px;}
.y15b{bottom:480.639000px;}
.yb2{bottom:481.755000px;}
.y12f{bottom:484.995000px;}
.yc{bottom:486.615000px;}
.yd3{bottom:491.655000px;}
.y6e{bottom:494.715000px;}
.yc4{bottom:496.695000px;}
.y112{bottom:499.935000px;}
.y14f{bottom:502.815000px;}
.y88{bottom:504.975000px;}
.y12e{bottom:505.695000px;}
.y4b{bottom:507.315000px;}
.yd2{bottom:510.915000px;}
.yb1{bottom:512.895000px;}
.y15a{bottom:514.869000px;}
.yf0{bottom:516.315000px;}
.y111{bottom:520.635000px;}
.yd1{bottom:522.255000px;}
.y6d{bottom:525.675000px;}
.yc3{bottom:527.655000px;}
.y4a{bottom:529.455000px;}
.y14e{bottom:533.775000px;}
.y87{bottom:536.115000px;}
.yef{bottom:537.015000px;}
.y159{bottom:539.169000px;}
.y12d{bottom:541.335000px;}
.yb0{bottom:543.855000px;}
.y110{bottom:556.275000px;}
.y6c{bottom:556.815000px;}
.yc2{bottom:558.795000px;}
.y49{bottom:560.415000px;}
.y12c{bottom:562.035000px;}
.y14d{bottom:564.915000px;}
.y86{bottom:567.075000px;}
.y158{bottom:574.989000px;}
.yaf{bottom:574.995000px;}
.yee{bottom:575.715000px;}
.yc1{bottom:578.055000px;}
.y48{bottom:580.395000px;}
.y12b{bottom:582.735000px;}
.y6b{bottom:587.775000px;}
.yc0{bottom:589.215000px;}
.y10{bottom:589.245000px;}
.y10f{bottom:592.095000px;}
.y14c{bottom:595.875000px;}
.yed{bottom:596.415000px;}
.y85{bottom:598.215000px;}
.yae{bottom:605.955000px;}
.y47{bottom:609.225000px;}
.y157{bottom:609.909000px;}
.y10e{bottom:612.825000px;}
.ya{bottom:616.425000px;}
.y12a{bottom:618.405000px;}
.y6a{bottom:618.945000px;}
.y13e{bottom:619.665000px;}
.y14b{bottom:627.045000px;}
.y46{bottom:629.025000px;}
.y84{bottom:629.205000px;}
.y10d{bottom:633.525000px;}
.yec{bottom:635.145000px;}
.yad{bottom:636.945000px;}
.y129{bottom:639.105000px;}
.y30{bottom:644.685000px;}
.y156{bottom:646.269000px;}
.y45{bottom:648.825000px;}
.y69{bottom:649.905000px;}
.y14a{bottom:658.005000px;}
.y83{bottom:660.345000px;}
.yac{bottom:668.085000px;}
.y44{bottom:668.625000px;}
.y10c{bottom:669.165000px;}
.yeb{bottom:673.845000px;}
.y128{bottom:674.925000px;}
.y68{bottom:681.045000px;}
.y155{bottom:682.089000px;}
.y43{bottom:688.605000px;}
.y149{bottom:689.145000px;}
.y10b{bottom:689.865000px;}
.y82{bottom:691.305000px;}
.yea{bottom:694.545000px;}
.y127{bottom:695.625000px;}
.yab{bottom:699.045000px;}
.y42{bottom:708.405000px;}
.y67{bottom:712.005000px;}
.y154{bottom:718.269000px;}
.yaa{bottom:718.305000px;}
.y148{bottom:720.105000px;}
.y81{bottom:722.445000px;}
.y10a{bottom:725.505000px;}
.y41{bottom:728.205000px;}
.ya9{bottom:729.645000px;}
.y126{bottom:731.265000px;}
.ye9{bottom:733.245000px;}
.y66{bottom:743.145000px;}
.y40{bottom:748.005000px;}
.y147{bottom:751.245000px;}
.y125{bottom:751.965000px;}
.y80{bottom:753.405000px;}
.ye8{bottom:753.945000px;}
.y109{bottom:761.325000px;}
.y3f{bottom:767.805000px;}
.y65{bottom:774.105000px;}
.y108{bottom:782.025000px;}
.y146{bottom:782.205000px;}
.y7f{bottom:782.385000px;}
.y124{bottom:787.605000px;}
.y3e{bottom:787.785000px;}
.ye7{bottom:792.645000px;}
.y64{bottom:805.245000px;}
.y3d{bottom:807.585000px;}
.y7e{bottom:811.365000px;}
.ye6{bottom:813.345000px;}
.y107{bottom:817.665000px;}
.y123{bottom:823.425000px;}
.y3c{bottom:827.385000px;}
.y63{bottom:836.205000px;}
.y106{bottom:838.365000px;}
.y7d{bottom:840.345000px;}
.y145{bottom:844.305000px;}
.y3b{bottom:847.185000px;}
.ye5{bottom:852.045000px;}
.y105{bottom:859.065000px;}
.y3a{bottom:866.985000px;}
.y62{bottom:867.345000px;}
.y7c{bottom:869.370000px;}
.ye4{bottom:872.790000px;}
.y144{bottom:875.490000px;}
.y122{bottom:879.810000px;}
.y12{bottom:888.450000px;}
.y104{bottom:894.750000px;}
.y39{bottom:896.730000px;}
.y61{bottom:898.350000px;}
.y143{bottom:906.450000px;}
.ye3{bottom:911.490000px;}
.y175{bottom:912.210000px;}
.y103{bottom:915.450000px;}
.y38{bottom:929.490000px;}
.ye2{bottom:932.190000px;}
.y142{bottom:937.590000px;}
.y102{bottom:951.090000px;}
.y36{bottom:960.450000px;}
.y37{bottom:967.290000px;}
.y141{bottom:968.550000px;}
.ye1{bottom:970.890000px;}
.y101{bottom:971.790000px;}
.y34{bottom:991.590000px;}
.y35{bottom:998.430000px;}
.y140{bottom:1007.250000px;}
.y100{bottom:1007.610000px;}
.y33{bottom:1022.550000px;}
.yff{bottom:1028.310000px;}
.y13f{bottom:1045.950000px;}
.y32{bottom:1053.690000px;}
.yfe{bottom:1063.950000px;}
.y31{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.140000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h1e{height:15.480000px;}
.h1c{height:15.660000px;}
.h1f{height:15.696000px;}
.h5{height:24.120000px;}
.h3{height:28.440000px;}
.h24{height:34.625391px;}
.h19{height:35.332031px;}
.h25{height:37.546875px;}
.h4{height:38.759766px;}
.h2{height:42.894141px;}
.h15{height:47.321367px;}
.h11{height:47.545312px;}
.h10{height:50.312812px;}
.h1a{height:52.998047px;}
.h23{height:54.067500px;}
.h1d{height:54.421875px;}
.h6{height:56.611406px;}
.h8{height:57.959925px;}
.ha{height:58.651172px;}
.h20{height:64.546875px;}
.hd{height:65.273906px;}
.h18{height:67.803750px;}
.h17{height:67.837500px;}
.h16{height:69.660000px;}
.h14{height:70.628906px;}
.h1b{height:70.664062px;}
.h13{height:72.562500px;}
.hf{height:100.620000px;}
.h7{height:170.490000px;}
.h12{height:173.700000px;}
.he{height:181.620000px;}
.hc{height:181.650000px;}
.h26{height:189.000000px;}
.hb{height:306.210000px;}
.h22{height:754.815000px;}
.h9{height:1188.900000px;}
.h21{height:1249.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.996000px;}
.w12{width:64.800000px;}
.w11{width:77.256000px;}
.w6{width:88.590000px;}
.wf{width:145.836000px;}
.wd{width:198.210000px;}
.w14{width:213.330000px;}
.wc{width:320.835000px;}
.wb{width:320.940000px;}
.wa{width:321.015000px;}
.w10{width:325.830000px;}
.w13{width:325.875000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.515000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.we{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:4.860000px;}
.x6{left:8.640000px;}
.xc{left:10.800000px;}
.x2b{left:19.260000px;}
.x29{left:20.520000px;}
.xe{left:22.320000px;}
.x25{left:30.780000px;}
.xd{left:33.120000px;}
.x15{left:37.620000px;}
.x2c{left:39.960000px;}
.x4{left:64.439987px;}
.x21{left:68.939987px;}
.x5{left:73.080000px;}
.x16{left:82.830000px;}
.x17{left:113.430000px;}
.x22{left:117.575987px;}
.x23{left:121.895987px;}
.x13{left:133.125000px;}
.x8{left:137.370000px;}
.x27{left:142.920000px;}
.x24{left:154.110000px;}
.x19{left:156.449987px;}
.x12{left:160.410000px;}
.x10{left:163.110000px;}
.x18{left:187.230000px;}
.x1a{left:194.609987px;}
.x34{left:202.530000px;}
.x31{left:206.849987px;}
.x2d{left:212.969987px;}
.x2f{left:231.689987px;}
.x20{left:280.469987px;}
.x26{left:300.675000px;}
.x3{left:388.694987px;}
.x11{left:406.155000px;}
.xf{left:408.135000px;}
.x14{left:411.915000px;}
.x1b{left:441.974987px;}
.x33{left:456.195000px;}
.x1{left:461.774987px;}
.x7{left:470.595000px;}
.x1c{left:555.584987px;}
.x28{left:627.225000px;}
.x1f{left:640.004987px;}
.x30{left:699.629987px;}
.x2a{left:705.210000px;}
.x32{left:713.129987px;}
.x2e{left:742.469987px;}
.x2{left:782.249987px;}
.xb{left:803.850000px;}
.x1d{left:813.569973px;}
.x1e{left:819.689987px;}
.x9{left:838.590000px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.618667pt;}
.ls17{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.220267pt;}
.lse{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls1e{letter-spacing:-0.156267pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.069867pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000003pt;}
.ls7{letter-spacing:0.020480pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.199467pt;}
.ls5{letter-spacing:0.240533pt;}
.ls8{letter-spacing:0.240640pt;}
.ls16{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls6{letter-spacing:3.840000pt;}
.ls4{letter-spacing:6.400000pt;}
.lsf{letter-spacing:10.240000pt;}
.ls9{letter-spacing:17.280000pt;}
.ls1d{letter-spacing:1329.066667pt;}
.ws2{word-spacing:-19.237120pt;}
.ws0{word-spacing:-17.688960pt;}
.ws16{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.576000pt;}
.ws14{word-spacing:-16.256000pt;}
.ws15{word-spacing:-16.192000pt;}
.ws17{word-spacing:-16.064000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.600533pt;}
.ws7{word-spacing:-15.559467pt;}
.ws9{word-spacing:-15.380480pt;}
.ws5{word-spacing:-15.360003pt;}
.ws6{word-spacing:-15.360000pt;}
.wsa{word-spacing:-15.139733pt;}
.wsc{word-spacing:-14.741333pt;}
.wsb{word-spacing:-14.720000pt;}
.wse{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.935253pt;}
.wsd{word-spacing:-11.808000pt;}
.ws3{word-spacing:-11.759573pt;}
.ws18{word-spacing:-10.832000pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-12.800000pt;}
._1a{margin-left:-4.672000pt;}
._13{margin-left:-3.194880pt;}
._f{margin-left:-2.027520pt;}
._5{margin-left:-1.006720pt;}
._0{width:0.934400pt;}
._4{width:2.305920pt;}
._e{width:3.592320pt;}
._12{width:4.552320pt;}
._d{width:5.593600pt;}
._2{width:6.502400pt;}
._3{width:7.914880pt;}
._8{width:9.073920pt;}
._a{width:10.698880pt;}
._11{width:12.218027pt;}
._10{width:13.393920pt;}
._9{width:14.501760pt;}
._14{width:16.588800pt;}
._6{width:17.657600pt;}
._1c{width:18.950400pt;}
._18{width:19.904000pt;}
._19{width:20.992000pt;}
._15{width:22.767787pt;}
._16{width:23.689600pt;}
._1b{width:25.242880pt;}
._1{width:26.400640pt;}
._7{width:27.745920pt;}
._21{width:28.841600pt;}
._20{width:36.224000pt;}
._1f{width:37.440000pt;}
._b{width:38.418133pt;}
._c{width:39.433813pt;}
._22{width:48.960000pt;}
._23{width:50.126933pt;}
._1e{width:61.870720pt;}
._1d{width:62.976000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y174{bottom:-93.472000pt;}
.y2f{bottom:-74.440000pt;}
.y22{bottom:-64.840000pt;}
.y173{bottom:-61.152000pt;}
.y2e{bottom:-50.280000pt;}
.y21{bottom:-32.520000pt;}
.y2d{bottom:-29.960000pt;}
.y172{bottom:-29.312000pt;}
.y171{bottom:-14.560000pt;}
.y2c{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:2.560000pt;}
.y98{bottom:2.720000pt;}
.y9{bottom:3.360000pt;}
.y13d{bottom:5.920000pt;}
.yb{bottom:6.720000pt;}
.y8{bottom:8.480000pt;}
.y2b{bottom:10.560000pt;}
.y170{bottom:15.840000pt;}
.y1f{bottom:16.000000pt;}
.y7{bottom:16.160000pt;}
.y26{bottom:20.226667pt;}
.y2a{bottom:30.880000pt;}
.y1e{bottom:32.320000pt;}
.yf{bottom:32.800000pt;}
.y16f{bottom:36.800000pt;}
.ye{bottom:38.720000pt;}
.y6{bottom:44.960000pt;}
.y24{bottom:47.200000pt;}
.y1d{bottom:48.640000pt;}
.y29{bottom:51.040000pt;}
.y16e{bottom:57.914667pt;}
.y95{bottom:62.560000pt;}
.y1c{bottom:64.960000pt;}
.y60{bottom:68.320000pt;}
.ybf{bottom:69.440000pt;}
.y16d{bottom:70.874667pt;}
.y28{bottom:71.360000pt;}
.y5f{bottom:72.320000pt;}
.ye0{bottom:78.272000pt;}
.y13c{bottom:80.032000pt;}
.y7b{bottom:80.992000pt;}
.y121{bottom:88.352000pt;}
.y5e{bottom:90.112000pt;}
.y16c{bottom:91.834667pt;}
.ya8{bottom:92.512000pt;}
.y5d{bottom:94.112000pt;}
.y153{bottom:95.392000pt;}
.ybe{bottom:96.992000pt;}
.y1b{bottom:97.120000pt;}
.y13b{bottom:98.432000pt;}
.ydf{bottom:105.792000pt;}
.y120{bottom:106.752000pt;}
.yfd{bottom:107.712000pt;}
.y7a{bottom:108.512000pt;}
.yd0{bottom:110.272000pt;}
.y5c{bottom:112.832000pt;}
.y16b{bottom:112.954667pt;}
.y1a{bottom:113.440000pt;}
.y13a{bottom:116.832000pt;}
.y94{bottom:117.792000pt;}
.ya7{bottom:120.192000pt;}
.ybd{bottom:124.672000pt;}
.y11f{bottom:125.152000pt;}
.yfc{bottom:126.112000pt;}
.y19{bottom:129.760000pt;}
.yde{bottom:133.466667pt;}
.y16a{bottom:133.914667pt;}
.y79{bottom:136.186667pt;}
.ycf{bottom:137.786667pt;}
.yd{bottom:138.746667pt;}
.yfb{bottom:144.506667pt;}
.y93{bottom:145.306667pt;}
.y18{bottom:145.920000pt;}
.ya6{bottom:147.706667pt;}
.y139{bottom:148.666667pt;}
.ybc{bottom:152.186667pt;}
.y5b{bottom:152.826667pt;}
.y169{bottom:155.034667pt;}
.y11e{bottom:156.826667pt;}
.ydd{bottom:160.986667pt;}
.y17{bottom:162.240000pt;}
.y78{bottom:163.706667pt;}
.yce{bottom:165.466667pt;}
.y138{bottom:167.066667pt;}
.y168{bottom:167.994667pt;}
.y5a{bottom:170.426667pt;}
.y92{bottom:172.986667pt;}
.y11d{bottom:175.226667pt;}
.ya5{bottom:175.386667pt;}
.yfa{bottom:178.906667pt;}
.ybb{bottom:179.866667pt;}
.ydc{bottom:188.666667pt;}
.y167{bottom:188.954667pt;}
.y77{bottom:191.386667pt;}
.ycd{bottom:192.986667pt;}
.y16{bottom:194.560000pt;}
.y59{bottom:196.026667pt;}
.yf9{bottom:197.306667pt;}
.y137{bottom:198.746667pt;}
.y91{bottom:200.506667pt;}
.ya4{bottom:202.906667pt;}
.y11c{bottom:207.066667pt;}
.yba{bottom:207.386667pt;}
.y166{bottom:210.074667pt;}
.y15{bottom:210.880000pt;}
.y58{bottom:213.626667pt;}
.ydb{bottom:216.186667pt;}
.y136{bottom:217.146667pt;}
.y76{bottom:218.906667pt;}
.ya3{bottom:220.026667pt;}
.ycc{bottom:220.666667pt;}
.y165{bottom:223.074667pt;}
.y11b{bottom:225.466667pt;}
.y14{bottom:227.066667pt;}
.y90{bottom:228.026667pt;}
.ya2{bottom:230.746667pt;}
.y57{bottom:231.386667pt;}
.yf8{bottom:231.706667pt;}
.yb9{bottom:235.066667pt;}
.y13{bottom:243.386667pt;}
.yda{bottom:243.866667pt;}
.y164{bottom:244.354667pt;}
.ya1{bottom:245.306667pt;}
.y75{bottom:246.426667pt;}
.ycb{bottom:248.186667pt;}
.y135{bottom:248.826667pt;}
.y56{bottom:248.986667pt;}
.yf7{bottom:250.106667pt;}
.y8f{bottom:255.706667pt;}
.y11a{bottom:257.146667pt;}
.ya0{bottom:259.706667pt;}
.yb8{bottom:262.586667pt;}
.y55{bottom:266.586667pt;}
.yd9{bottom:271.386667pt;}
.y74{bottom:274.106667pt;}
.y163{bottom:274.754667pt;}
.y119{bottom:275.546667pt;}
.yca{bottom:275.866667pt;}
.y134{bottom:280.666667pt;}
.y8e{bottom:283.226667pt;}
.y54{bottom:284.186667pt;}
.yf6{bottom:284.506667pt;}
.y162{bottom:287.714667pt;}
.y9f{bottom:288.666667pt;}
.yb7{bottom:290.266667pt;}
.y118{bottom:293.946667pt;}
.yd8{bottom:299.066667pt;}
.y73{bottom:301.626667pt;}
.y53{bottom:301.786667pt;}
.yf5{bottom:302.906667pt;}
.y9e{bottom:303.066667pt;}
.yc9{bottom:303.386667pt;}
.y161{bottom:308.834667pt;}
.y8d{bottom:310.946667pt;}
.y9d{bottom:317.666667pt;}
.yb6{bottom:317.826667pt;}
.y52{bottom:319.586667pt;}
.y27{bottom:320.226667pt;}
.y117{bottom:325.666667pt;}
.yd7{bottom:326.626667pt;}
.y72{bottom:329.346667pt;}
.y160{bottom:329.794667pt;}
.y133{bottom:330.786667pt;}
.yc8{bottom:331.106667pt;}
.y9c{bottom:332.066667pt;}
.y152{bottom:333.986667pt;}
.y51{bottom:337.186667pt;}
.yf4{bottom:337.346667pt;}
.y8c{bottom:338.466667pt;}
.y116{bottom:344.066667pt;}
.yb5{bottom:345.506667pt;}
.y9b{bottom:346.626667pt;}
.y132{bottom:349.186667pt;}
.y15f{bottom:350.914667pt;}
.yd6{bottom:354.306667pt;}
.y50{bottom:354.786667pt;}
.y71{bottom:356.866667pt;}
.yc7{bottom:358.626667pt;}
.y99{bottom:361.026667pt;}
.y115{bottom:362.466667pt;}
.y8b{bottom:366.146667pt;}
.yf3{bottom:371.746667pt;}
.y15e{bottom:371.874667pt;}
.y4f{bottom:372.386667pt;}
.yb4{bottom:373.026667pt;}
.y97{bottom:375.426667pt;}
.y151{bottom:379.426667pt;}
.y131{bottom:380.866667pt;}
.yd5{bottom:381.826667pt;}
.y70{bottom:384.546667pt;}
.y15d{bottom:384.834667pt;}
.yc6{bottom:386.306667pt;}
.y4e{bottom:389.986667pt;}
.yf2{bottom:390.146667pt;}
.y96{bottom:393.506667pt;}
.y8a{bottom:393.666667pt;}
.y114{bottom:394.306667pt;}
.y130{bottom:399.266667pt;}
.yb3{bottom:400.706667pt;}
.y15c{bottom:405.954667pt;}
.y4d{bottom:407.746667pt;}
.yd4{bottom:409.506667pt;}
.y150{bottom:411.266667pt;}
.y6f{bottom:412.066667pt;}
.y113{bottom:412.706667pt;}
.yc5{bottom:413.826667pt;}
.y23{bottom:414.146667pt;}
.y25{bottom:414.240000pt;}
.y89{bottom:421.346667pt;}
.yf1{bottom:424.546667pt;}
.y4c{bottom:425.346667pt;}
.y15b{bottom:427.234667pt;}
.yb2{bottom:428.226667pt;}
.y12f{bottom:431.106667pt;}
.yc{bottom:432.546667pt;}
.yd3{bottom:437.026667pt;}
.y6e{bottom:439.746667pt;}
.yc4{bottom:441.506667pt;}
.y112{bottom:444.386667pt;}
.y14f{bottom:446.946667pt;}
.y88{bottom:448.866667pt;}
.y12e{bottom:449.506667pt;}
.y4b{bottom:450.946667pt;}
.yd2{bottom:454.146667pt;}
.yb1{bottom:455.906667pt;}
.y15a{bottom:457.661333pt;}
.yf0{bottom:458.946667pt;}
.y111{bottom:462.786667pt;}
.yd1{bottom:464.226667pt;}
.y6d{bottom:467.266667pt;}
.yc3{bottom:469.026667pt;}
.y4a{bottom:470.626667pt;}
.y14e{bottom:474.466667pt;}
.y87{bottom:476.546667pt;}
.yef{bottom:477.346667pt;}
.y159{bottom:479.261333pt;}
.y12d{bottom:481.186667pt;}
.yb0{bottom:483.426667pt;}
.y110{bottom:494.466667pt;}
.y6c{bottom:494.946667pt;}
.yc2{bottom:496.706667pt;}
.y49{bottom:498.146667pt;}
.y12c{bottom:499.586667pt;}
.y14d{bottom:502.146667pt;}
.y86{bottom:504.066667pt;}
.y158{bottom:511.101333pt;}
.yaf{bottom:511.106667pt;}
.yee{bottom:511.746667pt;}
.yc1{bottom:513.826667pt;}
.y48{bottom:515.906667pt;}
.y12b{bottom:517.986667pt;}
.y6b{bottom:522.466667pt;}
.yc0{bottom:523.746667pt;}
.y10{bottom:523.773333pt;}
.y10f{bottom:526.306667pt;}
.y14c{bottom:529.666667pt;}
.yed{bottom:530.146667pt;}
.y85{bottom:531.746667pt;}
.yae{bottom:538.626667pt;}
.y47{bottom:541.533333pt;}
.y157{bottom:542.141333pt;}
.y10e{bottom:544.733333pt;}
.ya{bottom:547.933333pt;}
.y12a{bottom:549.693333pt;}
.y6a{bottom:550.173333pt;}
.y13e{bottom:550.813333pt;}
.y14b{bottom:557.373333pt;}
.y46{bottom:559.133333pt;}
.y84{bottom:559.293333pt;}
.y10d{bottom:563.133333pt;}
.yec{bottom:564.573333pt;}
.yad{bottom:566.173333pt;}
.y129{bottom:568.093333pt;}
.y30{bottom:573.053333pt;}
.y156{bottom:574.461333pt;}
.y45{bottom:576.733333pt;}
.y69{bottom:577.693333pt;}
.y14a{bottom:584.893333pt;}
.y83{bottom:586.973333pt;}
.yac{bottom:593.853333pt;}
.y44{bottom:594.333333pt;}
.y10c{bottom:594.813333pt;}
.yeb{bottom:598.973333pt;}
.y128{bottom:599.933333pt;}
.y68{bottom:605.373333pt;}
.y155{bottom:606.301333pt;}
.y43{bottom:612.093333pt;}
.y149{bottom:612.573333pt;}
.y10b{bottom:613.213333pt;}
.y82{bottom:614.493333pt;}
.yea{bottom:617.373333pt;}
.y127{bottom:618.333333pt;}
.yab{bottom:621.373333pt;}
.y42{bottom:629.693333pt;}
.y67{bottom:632.893333pt;}
.y154{bottom:638.461333pt;}
.yaa{bottom:638.493333pt;}
.y148{bottom:640.093333pt;}
.y81{bottom:642.173333pt;}
.y10a{bottom:644.893333pt;}
.y41{bottom:647.293333pt;}
.ya9{bottom:648.573333pt;}
.y126{bottom:650.013333pt;}
.ye9{bottom:651.773333pt;}
.y66{bottom:660.573333pt;}
.y40{bottom:664.893333pt;}
.y147{bottom:667.773333pt;}
.y125{bottom:668.413333pt;}
.y80{bottom:669.693333pt;}
.ye8{bottom:670.173333pt;}
.y109{bottom:676.733333pt;}
.y3f{bottom:682.493333pt;}
.y65{bottom:688.093333pt;}
.y108{bottom:695.133333pt;}
.y146{bottom:695.293333pt;}
.y7f{bottom:695.453333pt;}
.y124{bottom:700.093333pt;}
.y3e{bottom:700.253333pt;}
.ye7{bottom:704.573333pt;}
.y64{bottom:715.773333pt;}
.y3d{bottom:717.853333pt;}
.y7e{bottom:721.213333pt;}
.ye6{bottom:722.973333pt;}
.y107{bottom:726.813333pt;}
.y123{bottom:731.933333pt;}
.y3c{bottom:735.453333pt;}
.y63{bottom:743.293333pt;}
.y106{bottom:745.213333pt;}
.y7d{bottom:746.973333pt;}
.y145{bottom:750.493333pt;}
.y3b{bottom:753.053333pt;}
.ye5{bottom:757.373333pt;}
.y105{bottom:763.613333pt;}
.y3a{bottom:770.653333pt;}
.y62{bottom:770.973333pt;}
.y7c{bottom:772.773333pt;}
.ye4{bottom:775.813333pt;}
.y144{bottom:778.213333pt;}
.y122{bottom:782.053333pt;}
.y12{bottom:789.733333pt;}
.y104{bottom:795.333333pt;}
.y39{bottom:797.093333pt;}
.y61{bottom:798.533333pt;}
.y143{bottom:805.733333pt;}
.ye3{bottom:810.213333pt;}
.y175{bottom:810.853333pt;}
.y103{bottom:813.733333pt;}
.y38{bottom:826.213333pt;}
.ye2{bottom:828.613333pt;}
.y142{bottom:833.413333pt;}
.y102{bottom:845.413333pt;}
.y36{bottom:853.733333pt;}
.y37{bottom:859.813333pt;}
.y141{bottom:860.933333pt;}
.ye1{bottom:863.013333pt;}
.y101{bottom:863.813333pt;}
.y34{bottom:881.413333pt;}
.y35{bottom:887.493333pt;}
.y140{bottom:895.333333pt;}
.y100{bottom:895.653333pt;}
.y33{bottom:908.933333pt;}
.yff{bottom:914.053333pt;}
.y13f{bottom:929.733333pt;}
.y32{bottom:936.613333pt;}
.yfe{bottom:945.733333pt;}
.y31{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.680000pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h1e{height:13.760000pt;}
.h1c{height:13.920000pt;}
.h1f{height:13.952000pt;}
.h5{height:21.440000pt;}
.h3{height:25.280000pt;}
.h24{height:30.778125pt;}
.h19{height:31.406250pt;}
.h25{height:33.375000pt;}
.h4{height:34.453125pt;}
.h2{height:38.128125pt;}
.h15{height:42.063437pt;}
.h11{height:42.262500pt;}
.h10{height:44.722500pt;}
.h1a{height:47.109375pt;}
.h23{height:48.060000pt;}
.h1d{height:48.375000pt;}
.h6{height:50.321250pt;}
.h8{height:51.519933pt;}
.ha{height:52.134375pt;}
.h20{height:57.375000pt;}
.hd{height:58.021250pt;}
.h18{height:60.270000pt;}
.h17{height:60.300000pt;}
.h16{height:61.920000pt;}
.h14{height:62.781250pt;}
.h1b{height:62.812500pt;}
.h13{height:64.500000pt;}
.hf{height:89.440000pt;}
.h7{height:151.546667pt;}
.h12{height:154.400000pt;}
.he{height:161.440000pt;}
.hc{height:161.466667pt;}
.h26{height:168.000000pt;}
.hb{height:272.186667pt;}
.h22{height:670.946667pt;}
.h9{height:1056.800000pt;}
.h21{height:1111.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.552000pt;}
.w12{width:57.600000pt;}
.w11{width:68.672000pt;}
.w6{width:78.746667pt;}
.wf{width:129.632000pt;}
.wd{width:176.186667pt;}
.w14{width:189.626667pt;}
.wc{width:285.186667pt;}
.wb{width:285.280000pt;}
.wa{width:285.346667pt;}
.w10{width:289.626667pt;}
.w13{width:289.666667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.346667pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.we{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:4.320000pt;}
.x6{left:7.680000pt;}
.xc{left:9.600000pt;}
.x2b{left:17.120000pt;}
.x29{left:18.240000pt;}
.xe{left:19.840000pt;}
.x25{left:27.360000pt;}
.xd{left:29.440000pt;}
.x15{left:33.440000pt;}
.x2c{left:35.520000pt;}
.x4{left:57.279988pt;}
.x21{left:61.279988pt;}
.x5{left:64.960000pt;}
.x16{left:73.626667pt;}
.x17{left:100.826667pt;}
.x22{left:104.511988pt;}
.x23{left:108.351988pt;}
.x13{left:118.333333pt;}
.x8{left:122.106667pt;}
.x27{left:127.040000pt;}
.x24{left:136.986667pt;}
.x19{left:139.066655pt;}
.x12{left:142.586667pt;}
.x10{left:144.986667pt;}
.x18{left:166.426667pt;}
.x1a{left:172.986655pt;}
.x34{left:180.026667pt;}
.x31{left:183.866655pt;}
.x2d{left:189.306655pt;}
.x2f{left:205.946655pt;}
.x20{left:249.306655pt;}
.x26{left:267.266667pt;}
.x3{left:345.506655pt;}
.x11{left:361.026667pt;}
.xf{left:362.786667pt;}
.x14{left:366.146667pt;}
.x1b{left:392.866655pt;}
.x33{left:405.506667pt;}
.x1{left:410.466655pt;}
.x7{left:418.306667pt;}
.x1c{left:493.853322pt;}
.x28{left:557.533333pt;}
.x1f{left:568.893322pt;}
.x30{left:621.893322pt;}
.x2a{left:626.853333pt;}
.x32{left:633.893322pt;}
.x2e{left:659.973322pt;}
.x2{left:695.333322pt;}
.xb{left:714.533333pt;}
.x1d{left:723.173310pt;}
.x1e{left:728.613322pt;}
.x9{left:745.413333pt;}
}




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