
    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_27d6aa9a128dcd50847072ba.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b05430ec5337179e6bcd3ebf.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_73e2eba28f39c0743d99a58d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b1d5a51cb20ca728234ae865.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9cca93a2a104a88c36184f43.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7492b5672f742cbde13a10cd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c3a5337ea24bd8630d98c234.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_08b6c1054ec2600db31e428e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.762207;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_ffcafe5fa931bfdb873407fe.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_58c32aa9d9e5d17f26014817.woff')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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:ffb;src:url('chunks/assets/font_78d51442f06afd0973068443.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-80.640000px;}
.v1{vertical-align:-73.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls7{letter-spacing:-1.980000px;}
.ls9{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.828000px;}
.lsf{letter-spacing:-0.804000px;}
.ls26{letter-spacing:-0.702000px;}
.ls19{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.126000px;}
.ls12{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.097800px;}
.lse{letter-spacing:-0.085200px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls24{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.468000px;}
.ls13{letter-spacing:0.702000px;}
.ls28{letter-spacing:0.720000px;}
.ls0{letter-spacing:5.220000px;}
.ls1{letter-spacing:22.476000px;}
.ls25{letter-spacing:25.308000px;}
.ls3{letter-spacing:33.984000px;}
.lsc{letter-spacing:34.668000px;}
.ls15{letter-spacing:35.388000px;}
.lsd{letter-spacing:37.548000px;}
.ls1c{letter-spacing:38.268000px;}
.ls17{letter-spacing:48.348000px;}
.ls23{letter-spacing:49.788000px;}
.ls16{letter-spacing:51.948000px;}
.ls1e{letter-spacing:52.668000px;}
.ls18{letter-spacing:54.108000px;}
.ls1d{letter-spacing:55.548000px;}
.ls20{letter-spacing:61.308000px;}
.ls21{letter-spacing:62.892000px;}
.ls14{letter-spacing:93.060000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.226440px;}
.wsb{word-spacing:-14.806200px;}
.wse{word-spacing:-14.202000px;}
.ws10{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.824000px;}
.ws13{word-spacing:-13.626000px;}
.ws12{word-spacing:-13.608000px;}
.ws3{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.284000px;}
.ws4{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.996000px;}
.ws11{word-spacing:-12.798000px;}
.wsc{word-spacing:-12.672000px;}
.ws5{word-spacing:-12.420000px;}
.ws1{word-spacing:-11.790600px;}
.wsa{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.527600px;}
.ws9{word-spacing:-9.808800px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-7.316640px;}
._6{margin-left:-5.527440px;}
._8{margin-left:-3.906000px;}
._5{margin-left:-2.374800px;}
._0{margin-left:-1.258560px;}
._1{width:1.019520px;}
._4{width:2.726160px;}
._a{width:3.780000px;}
._9{width:4.804560px;}
._f{width:6.621120px;}
._b{width:7.722000px;}
._c{width:9.396000px;}
._10{width:10.638000px;}
._11{width:12.258000px;}
._1e{width:14.787360px;}
._12{width:16.038000px;}
._13{width:17.178480px;}
._d{width:18.900000px;}
._e{width:19.980000px;}
._18{width:21.099120px;}
._17{width:22.235040px;}
._1f{width:24.150960px;}
._1b{width:25.812000px;}
._24{width:27.648000px;}
._23{width:28.674000px;}
._15{width:29.916000px;}
._16{width:31.037520px;}
._14{width:32.092560px;}
._26{width:33.518400px;}
._20{width:35.100000px;}
._1d{width:36.126000px;}
._21{width:37.692000px;}
._22{width:39.150000px;}
._2a{width:40.549680px;}
._25{width:42.012000px;}
._1c{width:44.010000px;}
._28{width:45.653040px;}
._27{width:46.656000px;}
._2e{width:48.546000px;}
._2f{width:49.578480px;}
._2b{width:51.408000px;}
._29{width:53.152560px;}
._19{width:54.378000px;}
._1a{width:55.734480px;}
._36{width:61.417440px;}
._35{width:62.728560px;}
._2d{width:64.193040px;}
._32{width:65.880000px;}
._33{width:67.123440px;}
._38{width:68.583600px;}
._2c{width:85.698000px;}
._30{width:94.446000px;}
._37{width:111.636000px;}
._31{width:164.500560px;}
._34{width:290.454480px;}
._2{width:1625.460000px;}
._3{width:1927.132800px;}
.fc8{color:rgb(31,73,125);}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(0,32,96);}
.fc3{color:rgb(79,128,187);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(31,70,122);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.240000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:5.565000px;}
.y27{bottom:5.580000px;}
.ydb{bottom:9.885000px;}
.ycc{bottom:10.110000px;}
.y2a{bottom:12.585000px;}
.yd0{bottom:15.285000px;}
.yd3{bottom:16.725000px;}
.yd7{bottom:23.385000px;}
.y26{bottom:23.580000px;}
.yda{bottom:27.705000px;}
.y29{bottom:30.405000px;}
.ycf{bottom:33.105000px;}
.yd2{bottom:34.545000px;}
.yd6{bottom:41.385000px;}
.y25{bottom:50.400000px;}
.yce{bottom:50.925000px;}
.y3f{bottom:58.500000px;}
.yd5{bottom:59.205000px;}
.y24{bottom:68.220000px;}
.y7{bottom:76.860000px;}
.y3e{bottom:79.380000px;}
.y23{bottom:86.040000px;}
.y3a{bottom:91.260000px;}
.y78{bottom:98.820000px;}
.y1ae{bottom:99.000000px;}
.y3c{bottom:100.080000px;}
.ye2{bottom:100.980000px;}
.y22{bottom:103.860000px;}
.y10d{bottom:104.760000px;}
.y101{bottom:104.940000px;}
.y39{bottom:109.080000px;}
.y187{bottom:113.400000px;}
.ya9{bottom:113.580000px;}
.y166{bottom:113.940000px;}
.y77{bottom:116.640000px;}
.y1ad{bottom:116.820000px;}
.y3b{bottom:117.900000px;}
.ye1{bottom:118.800000px;}
.ydd{bottom:121.320000px;}
.y21{bottom:121.680000px;}
.y10c{bottom:122.580000px;}
.y100{bottom:122.760000px;}
.y38{bottom:126.900000px;}
.ya8{bottom:131.580000px;}
.y165{bottom:131.760000px;}
.y76{bottom:134.640000px;}
.ye0{bottom:136.620000px;}
.y20{bottom:139.680000px;}
.y13d{bottom:140.400000px;}
.yff{bottom:140.580000px;}
.y37{bottom:144.900000px;}
.ydc{bottom:148.320000px;}
.ya7{bottom:149.400000px;}
.y164{bottom:149.580000px;}
.y75{bottom:152.460000px;}
.y1ac{bottom:152.640000px;}
.ydf{bottom:154.620000px;}
.y1f{bottom:157.500000px;}
.y13c{bottom:158.220000px;}
.y10b{bottom:158.400000px;}
.yfe{bottom:158.580000px;}
.y36{bottom:162.720000px;}
.ya6{bottom:167.220000px;}
.y163{bottom:167.580000px;}
.y74{bottom:170.280000px;}
.y1ab{bottom:170.460000px;}
.yde{bottom:172.440000px;}
.y1e{bottom:175.320000px;}
.y13b{bottom:176.040000px;}
.y10a{bottom:176.220000px;}
.yfd{bottom:176.400000px;}
.y35{bottom:180.540000px;}
.ya5{bottom:185.040000px;}
.y162{bottom:185.400000px;}
.y14c{bottom:188.100000px;}
.y1aa{bottom:188.280000px;}
.y1d{bottom:193.140000px;}
.y13a{bottom:193.860000px;}
.y109{bottom:194.040000px;}
.yfc{bottom:194.220000px;}
.y73{bottom:197.100000px;}
.y34{bottom:198.360000px;}
.y186{bottom:202.860000px;}
.y161{bottom:203.220000px;}
.y14b{bottom:205.950000px;}
.y1a9{bottom:206.130000px;}
.y1c{bottom:210.960000px;}
.yd9{bottom:211.725000px;}
.ya4{bottom:211.890000px;}
.yfb{bottom:212.070000px;}
.y72{bottom:214.950000px;}
.y33{bottom:216.210000px;}
.y12b{bottom:220.890000px;}
.y160{bottom:221.070000px;}
.y14a{bottom:223.770000px;}
.y1a8{bottom:223.950000px;}
.y1b{bottom:228.990000px;}
.ya3{bottom:229.890000px;}
.y185{bottom:230.070000px;}
.y71{bottom:232.770000px;}
.y32{bottom:234.030000px;}
.y139{bottom:238.350000px;}
.y12a{bottom:238.890000px;}
.y149{bottom:241.770000px;}
.y1a{bottom:246.810000px;}
.ya2{bottom:247.710000px;}
.yfa{bottom:247.890000px;}
.y70{bottom:250.770000px;}
.y31{bottom:252.030000px;}
.yd4{bottom:252.405000px;}
.y129{bottom:256.710000px;}
.y15f{bottom:256.890000px;}
.y148{bottom:259.590000px;}
.y1a7{bottom:259.770000px;}
.y19{bottom:264.630000px;}
.ya1{bottom:265.530000px;}
.yf9{bottom:265.710000px;}
.y184{bottom:265.890000px;}
.y6f{bottom:268.590000px;}
.y30{bottom:269.850000px;}
.y108{bottom:274.170000px;}
.y128{bottom:274.530000px;}
.y15e{bottom:274.710000px;}
.y147{bottom:277.410000px;}
.y1a6{bottom:277.590000px;}
.y18{bottom:282.450000px;}
.ya0{bottom:283.350000px;}
.yf8{bottom:283.530000px;}
.y183{bottom:283.710000px;}
.y6e{bottom:286.410000px;}
.y2f{bottom:287.670000px;}
.y127{bottom:292.350000px;}
.y15d{bottom:292.530000px;}
.y1a5{bottom:295.410000px;}
.y17{bottom:300.270000px;}
.y9f{bottom:301.170000px;}
.yf7{bottom:301.350000px;}
.y182{bottom:301.530000px;}
.y6d{bottom:304.230000px;}
.y2e{bottom:305.490000px;}
.y126{bottom:310.170000px;}
.y15c{bottom:310.350000px;}
.y1a4{bottom:313.230000px;}
.y16{bottom:318.090000px;}
.y9e{bottom:318.990000px;}
.yf6{bottom:319.170000px;}
.y181{bottom:319.350000px;}
.y6c{bottom:322.050000px;}
.y2d{bottom:323.310000px;}
.yd1{bottom:324.585000px;}
.y125{bottom:327.990000px;}
.y15b{bottom:328.170000px;}
.y1a3{bottom:331.050000px;}
.y15{bottom:336.090000px;}
.y9d{bottom:336.990000px;}
.y180{bottom:337.170000px;}
.y6b{bottom:340.050000px;}
.y2c{bottom:341.310000px;}
.y124{bottom:345.990000px;}
.y1a2{bottom:349.050000px;}
.y14{bottom:353.910000px;}
.y9c{bottom:354.810000px;}
.yf5{bottom:354.990000px;}
.y6a{bottom:357.870000px;}
.y123{bottom:363.810000px;}
.y15a{bottom:363.990000px;}
.y1a1{bottom:366.870000px;}
.y2b{bottom:369.570000px;}
.y13{bottom:371.730000px;}
.ycd{bottom:372.105000px;}
.y9b{bottom:372.630000px;}
.y107{bottom:372.810000px;}
.y69{bottom:375.690000px;}
.yf4{bottom:381.450000px;}
.y122{bottom:381.630000px;}
.y159{bottom:381.810000px;}
.y17f{bottom:381.990000px;}
.y1a0{bottom:384.690000px;}
.y12{bottom:389.550000px;}
.y138{bottom:390.450000px;}
.y106{bottom:390.630000px;}
.y68{bottom:393.510000px;}
.y28{bottom:396.045000px;}
.y9a{bottom:399.090000px;}
.y121{bottom:399.450000px;}
.y158{bottom:399.630000px;}
.y17e{bottom:399.810000px;}
.y19f{bottom:402.510000px;}
.y11{bottom:407.370000px;}
.y137{bottom:408.270000px;}
.y105{bottom:408.450000px;}
.yf3{bottom:408.630000px;}
.y67{bottom:411.330000px;}
.y120{bottom:417.270000px;}
.y157{bottom:417.450000px;}
.y17d{bottom:417.630000px;}
.y19e{bottom:420.330000px;}
.y136{bottom:426.090000px;}
.y99{bottom:426.270000px;}
.yf2{bottom:426.450000px;}
.y146{bottom:429.150000px;}
.y11f{bottom:435.090000px;}
.y156{bottom:435.270000px;}
.y17c{bottom:435.450000px;}
.ycb{bottom:436.005000px;}
.y66{bottom:438.150000px;}
.y98{bottom:444.135000px;}
.yf1{bottom:444.315000px;}
.y145{bottom:447.195000px;}
.y10{bottom:448.455000px;}
.y11e{bottom:453.135000px;}
.y17b{bottom:453.315000px;}
.y65{bottom:456.195000px;}
.y97{bottom:462.135000px;}
.y144{bottom:465.015000px;}
.y11d{bottom:470.955000px;}
.y155{bottom:471.135000px;}
.yca{bottom:471.495000px;}
.y64{bottom:474.015000px;}
.y96{bottom:479.955000px;}
.yf0{bottom:480.135000px;}
.y143{bottom:482.835000px;}
.y135{bottom:488.775000px;}
.y154{bottom:488.955000px;}
.y63{bottom:491.835000px;}
.yc9{bottom:494.355000px;}
.y95{bottom:497.775000px;}
.yef{bottom:497.955000px;}
.y17a{bottom:498.135000px;}
.y142{bottom:500.655000px;}
.yc8{bottom:502.635000px;}
.y134{bottom:506.595000px;}
.y153{bottom:506.775000px;}
.y62{bottom:509.655000px;}
.ybe{bottom:514.515000px;}
.y94{bottom:515.595000px;}
.yee{bottom:515.775000px;}
.y179{bottom:515.955000px;}
.y141{bottom:518.475000px;}
.yc7{bottom:520.455000px;}
.y133{bottom:524.415000px;}
.y152{bottom:524.595000px;}
.y61{bottom:527.475000px;}
.ybd{bottom:532.335000px;}
.y93{bottom:533.415000px;}
.yed{bottom:533.595000px;}
.y178{bottom:533.775000px;}
.yc6{bottom:538.275000px;}
.y132{bottom:542.415000px;}
.y60{bottom:545.475000px;}
.y140{bottom:546.915000px;}
.ybc{bottom:550.155000px;}
.y92{bottom:551.415000px;}
.y177{bottom:551.595000px;}
.yc5{bottom:556.095000px;}
.y131{bottom:560.235000px;}
.y151{bottom:560.415000px;}
.y5f{bottom:563.295000px;}
.ybb{bottom:568.155000px;}
.y91{bottom:569.235000px;}
.yec{bottom:569.415000px;}
.yc4{bottom:574.095000px;}
.y130{bottom:578.055000px;}
.y13f{bottom:578.235000px;}
.y5e{bottom:581.115000px;}
.yba{bottom:585.975000px;}
.y90{bottom:587.055000px;}
.yeb{bottom:587.235000px;}
.y176{bottom:587.415000px;}
.yc3{bottom:591.915000px;}
.y12f{bottom:595.875000px;}
.y13e{bottom:596.055000px;}
.y5d{bottom:598.935000px;}
.yb9{bottom:603.795000px;}
.y11c{bottom:604.875000px;}
.yea{bottom:605.055000px;}
.y175{bottom:605.235000px;}
.yc2{bottom:609.735000px;}
.y8f{bottom:613.875000px;}
.y5c{bottom:616.755000px;}
.yb8{bottom:621.615000px;}
.y12e{bottom:622.335000px;}
.y11b{bottom:622.695000px;}
.ye9{bottom:622.875000px;}
.y174{bottom:623.055000px;}
.yc1{bottom:627.555000px;}
.y8e{bottom:631.695000px;}
.y5b{bottom:634.575000px;}
.yb7{bottom:639.435000px;}
.y11a{bottom:640.515000px;}
.ye8{bottom:640.695000px;}
.y173{bottom:640.875000px;}
.y12d{bottom:649.155000px;}
.y8d{bottom:649.515000px;}
.y5a{bottom:652.575000px;}
.yc0{bottom:654.375000px;}
.ye7{bottom:658.515000px;}
.y172{bottom:658.695000px;}
.y119{bottom:667.155000px;}
.y8c{bottom:667.515000px;}
.yb6{bottom:667.875000px;}
.y59{bottom:670.395000px;}
.ybf{bottom:672.375000px;}
.y12c{bottom:676.545000px;}
.y8b{bottom:685.365000px;}
.ye6{bottom:685.545000px;}
.y58{bottom:688.245000px;}
.y118{bottom:694.365000px;}
.y171{bottom:694.545000px;}
.yb5{bottom:698.865000px;}
.y8a{bottom:703.185000px;}
.ye5{bottom:703.365000px;}
.y19d{bottom:706.065000px;}
.y117{bottom:712.185000px;}
.y170{bottom:712.365000px;}
.y57{bottom:714.705000px;}
.y89{bottom:721.005000px;}
.ye4{bottom:721.185000px;}
.yb4{bottom:722.985000px;}
.y19c{bottom:723.885000px;}
.y116{bottom:730.005000px;}
.y16f{bottom:730.185000px;}
.y88{bottom:738.825000px;}
.ye3{bottom:739.005000px;}
.y19b{bottom:741.705000px;}
.y56{bottom:743.325000px;}
.y115{bottom:747.825000px;}
.y16e{bottom:748.005000px;}
.y87{bottom:756.825000px;}
.y19a{bottom:759.705000px;}
.y114{bottom:765.825000px;}
.y86{bottom:774.645000px;}
.y55{bottom:774.825000px;}
.y199{bottom:777.525000px;}
.y113{bottom:783.645000px;}
.y16d{bottom:783.825000px;}
.y104{bottom:792.465000px;}
.y54{bottom:792.645000px;}
.y198{bottom:795.345000px;}
.y85{bottom:801.465000px;}
.y16c{bottom:801.645000px;}
.y150{bottom:810.285000px;}
.y53{bottom:810.465000px;}
.y197{bottom:813.165000px;}
.y103{bottom:818.925000px;}
.y84{bottom:819.285000px;}
.y16b{bottom:819.465000px;}
.y52{bottom:828.285000px;}
.y196{bottom:830.985000px;}
.y83{bottom:837.105000px;}
.y16a{bottom:837.285000px;}
.y51{bottom:846.105000px;}
.y195{bottom:848.985000px;}
.y82{bottom:854.925000px;}
.y169{bottom:855.105000px;}
.y50{bottom:863.925000px;}
.y194{bottom:866.805000px;}
.y81{bottom:872.925000px;}
.y4f{bottom:881.925000px;}
.yf{bottom:883.545000px;}
.y193{bottom:884.625000px;}
.y80{bottom:890.745000px;}
.y168{bottom:890.925000px;}
.y14f{bottom:899.385000px;}
.y4e{bottom:899.745000px;}
.y192{bottom:902.445000px;}
.y7f{bottom:908.565000px;}
.y167{bottom:908.745000px;}
.ye{bottom:910.365000px;}
.y4d{bottom:917.610000px;}
.y191{bottom:920.310000px;}
.y7e{bottom:926.430000px;}
.y14e{bottom:926.610000px;}
.y4c{bottom:935.430000px;}
.yd{bottom:937.230000px;}
.y190{bottom:938.130000px;}
.y7d{bottom:944.250000px;}
.y14d{bottom:944.430000px;}
.y4b{bottom:953.250000px;}
.y18f{bottom:956.130000px;}
.y7c{bottom:962.250000px;}
.yc{bottom:963.690000px;}
.y4a{bottom:971.250000px;}
.yb3{bottom:971.790000px;}
.y18e{bottom:973.950000px;}
.y7b{bottom:980.070000px;}
.y102{bottom:980.250000px;}
.y112{bottom:989.070000px;}
.y18d{bottom:991.770000px;}
.yb{bottom:993.570000px;}
.y7a{bottom:997.890000px;}
.y49{bottom:998.070000px;}
.y111{bottom:1006.890000px;}
.y18c{bottom:1009.590000px;}
.yb2{bottom:1015.710000px;}
.y48{bottom:1015.890000px;}
.ya{bottom:1021.470000px;}
.y79{bottom:1024.350000px;}
.y110{bottom:1024.710000px;}
.yb1{bottom:1033.530000px;}
.y47{bottom:1033.710000px;}
.y18b{bottom:1037.850000px;}
.y10f{bottom:1042.530000px;}
.yb0{bottom:1051.350000px;}
.y46{bottom:1051.530000px;}
.y9{bottom:1056.930000px;}
.y10e{bottom:1060.350000px;}
.y45{bottom:1069.350000px;}
.yaf{bottom:1078.350000px;}
.y18a{bottom:1087.170000px;}
.y8{bottom:1087.350000px;}
.yae{bottom:1096.170000px;}
.y189{bottom:1104.990000px;}
.y44{bottom:1105.170000px;}
.y6{bottom:1113.270000px;}
.yad{bottom:1113.990000px;}
.y43{bottom:1122.990000px;}
.y188{bottom:1131.450000px;}
.yac{bottom:1131.810000px;}
.y5{bottom:1132.530000px;}
.y42{bottom:1140.810000px;}
.yab{bottom:1149.660000px;}
.y4{bottom:1150.920000px;}
.y41{bottom:1158.660000px;}
.y3{bottom:1166.220000px;}
.yaa{bottom:1167.660000px;}
.y40{bottom:1176.660000px;}
.y2{bottom:1181.520000px;}
.y3d{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h12{height:12.012891px;}
.h14{height:22.701000px;}
.h1c{height:39.049805px;}
.h18{height:39.945000px;}
.hf{height:40.843828px;}
.h16{height:46.785000px;}
.h5{height:47.344922px;}
.h10{height:49.680000px;}
.hd{height:51.681000px;}
.hc{height:52.971680px;}
.h6{height:52.998047px;}
.h13{height:53.709961px;}
.ha{height:54.421875px;}
.h1a{height:55.503491px;}
.h11{height:56.214844px;}
.h9{height:60.041250px;}
.h19{height:60.226875px;}
.h15{height:63.165000px;}
.h2{height:65.010937px;}
.h4{height:65.884219px;}
.h7{height:69.660000px;}
.h3{height:70.664062px;}
.h17{height:71.445000px;}
.h1b{height:72.562500px;}
.he{height:74.953125px;}
.h8{height:84.898125px;}
.hb{height:428.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:149.029500px;}
.w4{width:555.075000px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.098500px;}
.x5{left:54.000000px;}
.x8{left:64.620000px;}
.x9{left:72.901500px;}
.xb{left:81.000000px;}
.x6{left:89.676000px;}
.xc{left:95.256000px;}
.x16{left:108.036000px;}
.xf{left:218.910000px;}
.x14{left:243.585000px;}
.x1{left:262.650000px;}
.x2{left:306.795000px;}
.x13{left:309.135000px;}
.x4{left:340.815000px;}
.x3{left:353.055000px;}
.xe{left:473.505000px;}
.x11{left:500.325000px;}
.xd{left:514.725000px;}
.x15{left:527.505000px;}
.x12{left:615.345000px;}
.x10{left:824.040000px;}
.x7{left:831.600000px;}
@media print{
.v3{vertical-align:-71.680000pt;}
.v1{vertical-align:-65.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls7{letter-spacing:-1.760000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.736000pt;}
.lsf{letter-spacing:-0.714667pt;}
.ls26{letter-spacing:-0.624000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.112000pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.086933pt;}
.lse{letter-spacing:-0.075733pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls24{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.416000pt;}
.ls13{letter-spacing:0.624000pt;}
.ls28{letter-spacing:0.640000pt;}
.ls0{letter-spacing:4.640000pt;}
.ls1{letter-spacing:19.978667pt;}
.ls25{letter-spacing:22.496000pt;}
.ls3{letter-spacing:30.208000pt;}
.lsc{letter-spacing:30.816000pt;}
.ls15{letter-spacing:31.456000pt;}
.lsd{letter-spacing:33.376000pt;}
.ls1c{letter-spacing:34.016000pt;}
.ls17{letter-spacing:42.976000pt;}
.ls23{letter-spacing:44.256000pt;}
.ls16{letter-spacing:46.176000pt;}
.ls1e{letter-spacing:46.816000pt;}
.ls18{letter-spacing:48.096000pt;}
.ls1d{letter-spacing:49.376000pt;}
.ls20{letter-spacing:54.496000pt;}
.ls21{letter-spacing:55.904000pt;}
.ls14{letter-spacing:82.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.161067pt;}
.wse{word-spacing:-12.624000pt;}
.ws10{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.288000pt;}
.ws13{word-spacing:-12.112000pt;}
.ws12{word-spacing:-12.096000pt;}
.ws3{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.808000pt;}
.ws4{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.552000pt;}
.ws11{word-spacing:-11.376000pt;}
.wsc{word-spacing:-11.264000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.480533pt;}
.wsa{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.357867pt;}
.ws9{word-spacing:-8.718933pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-6.503680pt;}
._6{margin-left:-4.913280pt;}
._8{margin-left:-3.472000pt;}
._5{margin-left:-2.110933pt;}
._0{margin-left:-1.118720pt;}
._1{width:0.906240pt;}
._4{width:2.423253pt;}
._a{width:3.360000pt;}
._9{width:4.270720pt;}
._f{width:5.885440pt;}
._b{width:6.864000pt;}
._c{width:8.352000pt;}
._10{width:9.456000pt;}
._11{width:10.896000pt;}
._1e{width:13.144320pt;}
._12{width:14.256000pt;}
._13{width:15.269760pt;}
._d{width:16.800000pt;}
._e{width:17.760000pt;}
._18{width:18.754773pt;}
._17{width:19.764480pt;}
._1f{width:21.467520pt;}
._1b{width:22.944000pt;}
._24{width:24.576000pt;}
._23{width:25.488000pt;}
._15{width:26.592000pt;}
._16{width:27.588907pt;}
._14{width:28.526720pt;}
._26{width:29.794133pt;}
._20{width:31.200000pt;}
._1d{width:32.112000pt;}
._21{width:33.504000pt;}
._22{width:34.800000pt;}
._2a{width:36.044160pt;}
._25{width:37.344000pt;}
._1c{width:39.120000pt;}
._28{width:40.580480pt;}
._27{width:41.472000pt;}
._2e{width:43.152000pt;}
._2f{width:44.069760pt;}
._2b{width:45.696000pt;}
._29{width:47.246720pt;}
._19{width:48.336000pt;}
._1a{width:49.541760pt;}
._36{width:54.593280pt;}
._35{width:55.758720pt;}
._2d{width:57.060480pt;}
._32{width:58.560000pt;}
._33{width:59.665280pt;}
._38{width:60.963200pt;}
._2c{width:76.176000pt;}
._30{width:83.952000pt;}
._37{width:99.232000pt;}
._31{width:146.222720pt;}
._34{width:258.181760pt;}
._2{width:1444.853333pt;}
._3{width:1713.006933pt;}
.fs7{font-size:10.880000pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:4.946667pt;}
.y27{bottom:4.960000pt;}
.ydb{bottom:8.786667pt;}
.ycc{bottom:8.986667pt;}
.y2a{bottom:11.186667pt;}
.yd0{bottom:13.586667pt;}
.yd3{bottom:14.866667pt;}
.yd7{bottom:20.786667pt;}
.y26{bottom:20.960000pt;}
.yda{bottom:24.626667pt;}
.y29{bottom:27.026667pt;}
.ycf{bottom:29.426667pt;}
.yd2{bottom:30.706667pt;}
.yd6{bottom:36.786667pt;}
.y25{bottom:44.800000pt;}
.yce{bottom:45.266667pt;}
.y3f{bottom:52.000000pt;}
.yd5{bottom:52.626667pt;}
.y24{bottom:60.640000pt;}
.y7{bottom:68.320000pt;}
.y3e{bottom:70.560000pt;}
.y23{bottom:76.480000pt;}
.y3a{bottom:81.120000pt;}
.y78{bottom:87.840000pt;}
.y1ae{bottom:88.000000pt;}
.y3c{bottom:88.960000pt;}
.ye2{bottom:89.760000pt;}
.y22{bottom:92.320000pt;}
.y10d{bottom:93.120000pt;}
.y101{bottom:93.280000pt;}
.y39{bottom:96.960000pt;}
.y187{bottom:100.800000pt;}
.ya9{bottom:100.960000pt;}
.y166{bottom:101.280000pt;}
.y77{bottom:103.680000pt;}
.y1ad{bottom:103.840000pt;}
.y3b{bottom:104.800000pt;}
.ye1{bottom:105.600000pt;}
.ydd{bottom:107.840000pt;}
.y21{bottom:108.160000pt;}
.y10c{bottom:108.960000pt;}
.y100{bottom:109.120000pt;}
.y38{bottom:112.800000pt;}
.ya8{bottom:116.960000pt;}
.y165{bottom:117.120000pt;}
.y76{bottom:119.680000pt;}
.ye0{bottom:121.440000pt;}
.y20{bottom:124.160000pt;}
.y13d{bottom:124.800000pt;}
.yff{bottom:124.960000pt;}
.y37{bottom:128.800000pt;}
.ydc{bottom:131.840000pt;}
.ya7{bottom:132.800000pt;}
.y164{bottom:132.960000pt;}
.y75{bottom:135.520000pt;}
.y1ac{bottom:135.680000pt;}
.ydf{bottom:137.440000pt;}
.y1f{bottom:140.000000pt;}
.y13c{bottom:140.640000pt;}
.y10b{bottom:140.800000pt;}
.yfe{bottom:140.960000pt;}
.y36{bottom:144.640000pt;}
.ya6{bottom:148.640000pt;}
.y163{bottom:148.960000pt;}
.y74{bottom:151.360000pt;}
.y1ab{bottom:151.520000pt;}
.yde{bottom:153.280000pt;}
.y1e{bottom:155.840000pt;}
.y13b{bottom:156.480000pt;}
.y10a{bottom:156.640000pt;}
.yfd{bottom:156.800000pt;}
.y35{bottom:160.480000pt;}
.ya5{bottom:164.480000pt;}
.y162{bottom:164.800000pt;}
.y14c{bottom:167.200000pt;}
.y1aa{bottom:167.360000pt;}
.y1d{bottom:171.680000pt;}
.y13a{bottom:172.320000pt;}
.y109{bottom:172.480000pt;}
.yfc{bottom:172.640000pt;}
.y73{bottom:175.200000pt;}
.y34{bottom:176.320000pt;}
.y186{bottom:180.320000pt;}
.y161{bottom:180.640000pt;}
.y14b{bottom:183.066667pt;}
.y1a9{bottom:183.226667pt;}
.y1c{bottom:187.520000pt;}
.yd9{bottom:188.200000pt;}
.ya4{bottom:188.346667pt;}
.yfb{bottom:188.506667pt;}
.y72{bottom:191.066667pt;}
.y33{bottom:192.186667pt;}
.y12b{bottom:196.346667pt;}
.y160{bottom:196.506667pt;}
.y14a{bottom:198.906667pt;}
.y1a8{bottom:199.066667pt;}
.y1b{bottom:203.546667pt;}
.ya3{bottom:204.346667pt;}
.y185{bottom:204.506667pt;}
.y71{bottom:206.906667pt;}
.y32{bottom:208.026667pt;}
.y139{bottom:211.866667pt;}
.y12a{bottom:212.346667pt;}
.y149{bottom:214.906667pt;}
.y1a{bottom:219.386667pt;}
.ya2{bottom:220.186667pt;}
.yfa{bottom:220.346667pt;}
.y70{bottom:222.906667pt;}
.y31{bottom:224.026667pt;}
.yd4{bottom:224.360000pt;}
.y129{bottom:228.186667pt;}
.y15f{bottom:228.346667pt;}
.y148{bottom:230.746667pt;}
.y1a7{bottom:230.906667pt;}
.y19{bottom:235.226667pt;}
.ya1{bottom:236.026667pt;}
.yf9{bottom:236.186667pt;}
.y184{bottom:236.346667pt;}
.y6f{bottom:238.746667pt;}
.y30{bottom:239.866667pt;}
.y108{bottom:243.706667pt;}
.y128{bottom:244.026667pt;}
.y15e{bottom:244.186667pt;}
.y147{bottom:246.586667pt;}
.y1a6{bottom:246.746667pt;}
.y18{bottom:251.066667pt;}
.ya0{bottom:251.866667pt;}
.yf8{bottom:252.026667pt;}
.y183{bottom:252.186667pt;}
.y6e{bottom:254.586667pt;}
.y2f{bottom:255.706667pt;}
.y127{bottom:259.866667pt;}
.y15d{bottom:260.026667pt;}
.y1a5{bottom:262.586667pt;}
.y17{bottom:266.906667pt;}
.y9f{bottom:267.706667pt;}
.yf7{bottom:267.866667pt;}
.y182{bottom:268.026667pt;}
.y6d{bottom:270.426667pt;}
.y2e{bottom:271.546667pt;}
.y126{bottom:275.706667pt;}
.y15c{bottom:275.866667pt;}
.y1a4{bottom:278.426667pt;}
.y16{bottom:282.746667pt;}
.y9e{bottom:283.546667pt;}
.yf6{bottom:283.706667pt;}
.y181{bottom:283.866667pt;}
.y6c{bottom:286.266667pt;}
.y2d{bottom:287.386667pt;}
.yd1{bottom:288.520000pt;}
.y125{bottom:291.546667pt;}
.y15b{bottom:291.706667pt;}
.y1a3{bottom:294.266667pt;}
.y15{bottom:298.746667pt;}
.y9d{bottom:299.546667pt;}
.y180{bottom:299.706667pt;}
.y6b{bottom:302.266667pt;}
.y2c{bottom:303.386667pt;}
.y124{bottom:307.546667pt;}
.y1a2{bottom:310.266667pt;}
.y14{bottom:314.586667pt;}
.y9c{bottom:315.386667pt;}
.yf5{bottom:315.546667pt;}
.y6a{bottom:318.106667pt;}
.y123{bottom:323.386667pt;}
.y15a{bottom:323.546667pt;}
.y1a1{bottom:326.106667pt;}
.y2b{bottom:328.506667pt;}
.y13{bottom:330.426667pt;}
.ycd{bottom:330.760000pt;}
.y9b{bottom:331.226667pt;}
.y107{bottom:331.386667pt;}
.y69{bottom:333.946667pt;}
.yf4{bottom:339.066667pt;}
.y122{bottom:339.226667pt;}
.y159{bottom:339.386667pt;}
.y17f{bottom:339.546667pt;}
.y1a0{bottom:341.946667pt;}
.y12{bottom:346.266667pt;}
.y138{bottom:347.066667pt;}
.y106{bottom:347.226667pt;}
.y68{bottom:349.786667pt;}
.y28{bottom:352.040000pt;}
.y9a{bottom:354.746667pt;}
.y121{bottom:355.066667pt;}
.y158{bottom:355.226667pt;}
.y17e{bottom:355.386667pt;}
.y19f{bottom:357.786667pt;}
.y11{bottom:362.106667pt;}
.y137{bottom:362.906667pt;}
.y105{bottom:363.066667pt;}
.yf3{bottom:363.226667pt;}
.y67{bottom:365.626667pt;}
.y120{bottom:370.906667pt;}
.y157{bottom:371.066667pt;}
.y17d{bottom:371.226667pt;}
.y19e{bottom:373.626667pt;}
.y136{bottom:378.746667pt;}
.y99{bottom:378.906667pt;}
.yf2{bottom:379.066667pt;}
.y146{bottom:381.466667pt;}
.y11f{bottom:386.746667pt;}
.y156{bottom:386.906667pt;}
.y17c{bottom:387.066667pt;}
.ycb{bottom:387.560000pt;}
.y66{bottom:389.466667pt;}
.y98{bottom:394.786667pt;}
.yf1{bottom:394.946667pt;}
.y145{bottom:397.506667pt;}
.y10{bottom:398.626667pt;}
.y11e{bottom:402.786667pt;}
.y17b{bottom:402.946667pt;}
.y65{bottom:405.506667pt;}
.y97{bottom:410.786667pt;}
.y144{bottom:413.346667pt;}
.y11d{bottom:418.626667pt;}
.y155{bottom:418.786667pt;}
.yca{bottom:419.106667pt;}
.y64{bottom:421.346667pt;}
.y96{bottom:426.626667pt;}
.yf0{bottom:426.786667pt;}
.y143{bottom:429.186667pt;}
.y135{bottom:434.466667pt;}
.y154{bottom:434.626667pt;}
.y63{bottom:437.186667pt;}
.yc9{bottom:439.426667pt;}
.y95{bottom:442.466667pt;}
.yef{bottom:442.626667pt;}
.y17a{bottom:442.786667pt;}
.y142{bottom:445.026667pt;}
.yc8{bottom:446.786667pt;}
.y134{bottom:450.306667pt;}
.y153{bottom:450.466667pt;}
.y62{bottom:453.026667pt;}
.ybe{bottom:457.346667pt;}
.y94{bottom:458.306667pt;}
.yee{bottom:458.466667pt;}
.y179{bottom:458.626667pt;}
.y141{bottom:460.866667pt;}
.yc7{bottom:462.626667pt;}
.y133{bottom:466.146667pt;}
.y152{bottom:466.306667pt;}
.y61{bottom:468.866667pt;}
.ybd{bottom:473.186667pt;}
.y93{bottom:474.146667pt;}
.yed{bottom:474.306667pt;}
.y178{bottom:474.466667pt;}
.yc6{bottom:478.466667pt;}
.y132{bottom:482.146667pt;}
.y60{bottom:484.866667pt;}
.y140{bottom:486.146667pt;}
.ybc{bottom:489.026667pt;}
.y92{bottom:490.146667pt;}
.y177{bottom:490.306667pt;}
.yc5{bottom:494.306667pt;}
.y131{bottom:497.986667pt;}
.y151{bottom:498.146667pt;}
.y5f{bottom:500.706667pt;}
.ybb{bottom:505.026667pt;}
.y91{bottom:505.986667pt;}
.yec{bottom:506.146667pt;}
.yc4{bottom:510.306667pt;}
.y130{bottom:513.826667pt;}
.y13f{bottom:513.986667pt;}
.y5e{bottom:516.546667pt;}
.yba{bottom:520.866667pt;}
.y90{bottom:521.826667pt;}
.yeb{bottom:521.986667pt;}
.y176{bottom:522.146667pt;}
.yc3{bottom:526.146667pt;}
.y12f{bottom:529.666667pt;}
.y13e{bottom:529.826667pt;}
.y5d{bottom:532.386667pt;}
.yb9{bottom:536.706667pt;}
.y11c{bottom:537.666667pt;}
.yea{bottom:537.826667pt;}
.y175{bottom:537.986667pt;}
.yc2{bottom:541.986667pt;}
.y8f{bottom:545.666667pt;}
.y5c{bottom:548.226667pt;}
.yb8{bottom:552.546667pt;}
.y12e{bottom:553.186667pt;}
.y11b{bottom:553.506667pt;}
.ye9{bottom:553.666667pt;}
.y174{bottom:553.826667pt;}
.yc1{bottom:557.826667pt;}
.y8e{bottom:561.506667pt;}
.y5b{bottom:564.066667pt;}
.yb7{bottom:568.386667pt;}
.y11a{bottom:569.346667pt;}
.ye8{bottom:569.506667pt;}
.y173{bottom:569.666667pt;}
.y12d{bottom:577.026667pt;}
.y8d{bottom:577.346667pt;}
.y5a{bottom:580.066667pt;}
.yc0{bottom:581.666667pt;}
.ye7{bottom:585.346667pt;}
.y172{bottom:585.506667pt;}
.y119{bottom:593.026667pt;}
.y8c{bottom:593.346667pt;}
.yb6{bottom:593.666667pt;}
.y59{bottom:595.906667pt;}
.ybf{bottom:597.666667pt;}
.y12c{bottom:601.373333pt;}
.y8b{bottom:609.213333pt;}
.ye6{bottom:609.373333pt;}
.y58{bottom:611.773333pt;}
.y118{bottom:617.213333pt;}
.y171{bottom:617.373333pt;}
.yb5{bottom:621.213333pt;}
.y8a{bottom:625.053333pt;}
.ye5{bottom:625.213333pt;}
.y19d{bottom:627.613333pt;}
.y117{bottom:633.053333pt;}
.y170{bottom:633.213333pt;}
.y57{bottom:635.293333pt;}
.y89{bottom:640.893333pt;}
.ye4{bottom:641.053333pt;}
.yb4{bottom:642.653333pt;}
.y19c{bottom:643.453333pt;}
.y116{bottom:648.893333pt;}
.y16f{bottom:649.053333pt;}
.y88{bottom:656.733333pt;}
.ye3{bottom:656.893333pt;}
.y19b{bottom:659.293333pt;}
.y56{bottom:660.733333pt;}
.y115{bottom:664.733333pt;}
.y16e{bottom:664.893333pt;}
.y87{bottom:672.733333pt;}
.y19a{bottom:675.293333pt;}
.y114{bottom:680.733333pt;}
.y86{bottom:688.573333pt;}
.y55{bottom:688.733333pt;}
.y199{bottom:691.133333pt;}
.y113{bottom:696.573333pt;}
.y16d{bottom:696.733333pt;}
.y104{bottom:704.413333pt;}
.y54{bottom:704.573333pt;}
.y198{bottom:706.973333pt;}
.y85{bottom:712.413333pt;}
.y16c{bottom:712.573333pt;}
.y150{bottom:720.253333pt;}
.y53{bottom:720.413333pt;}
.y197{bottom:722.813333pt;}
.y103{bottom:727.933333pt;}
.y84{bottom:728.253333pt;}
.y16b{bottom:728.413333pt;}
.y52{bottom:736.253333pt;}
.y196{bottom:738.653333pt;}
.y83{bottom:744.093333pt;}
.y16a{bottom:744.253333pt;}
.y51{bottom:752.093333pt;}
.y195{bottom:754.653333pt;}
.y82{bottom:759.933333pt;}
.y169{bottom:760.093333pt;}
.y50{bottom:767.933333pt;}
.y194{bottom:770.493333pt;}
.y81{bottom:775.933333pt;}
.y4f{bottom:783.933333pt;}
.yf{bottom:785.373333pt;}
.y193{bottom:786.333333pt;}
.y80{bottom:791.773333pt;}
.y168{bottom:791.933333pt;}
.y14f{bottom:799.453333pt;}
.y4e{bottom:799.773333pt;}
.y192{bottom:802.173333pt;}
.y7f{bottom:807.613333pt;}
.y167{bottom:807.773333pt;}
.ye{bottom:809.213333pt;}
.y4d{bottom:815.653333pt;}
.y191{bottom:818.053333pt;}
.y7e{bottom:823.493333pt;}
.y14e{bottom:823.653333pt;}
.y4c{bottom:831.493333pt;}
.yd{bottom:833.093333pt;}
.y190{bottom:833.893333pt;}
.y7d{bottom:839.333333pt;}
.y14d{bottom:839.493333pt;}
.y4b{bottom:847.333333pt;}
.y18f{bottom:849.893333pt;}
.y7c{bottom:855.333333pt;}
.yc{bottom:856.613333pt;}
.y4a{bottom:863.333333pt;}
.yb3{bottom:863.813333pt;}
.y18e{bottom:865.733333pt;}
.y7b{bottom:871.173333pt;}
.y102{bottom:871.333333pt;}
.y112{bottom:879.173333pt;}
.y18d{bottom:881.573333pt;}
.yb{bottom:883.173333pt;}
.y7a{bottom:887.013333pt;}
.y49{bottom:887.173333pt;}
.y111{bottom:895.013333pt;}
.y18c{bottom:897.413333pt;}
.yb2{bottom:902.853333pt;}
.y48{bottom:903.013333pt;}
.ya{bottom:907.973333pt;}
.y79{bottom:910.533333pt;}
.y110{bottom:910.853333pt;}
.yb1{bottom:918.693333pt;}
.y47{bottom:918.853333pt;}
.y18b{bottom:922.533333pt;}
.y10f{bottom:926.693333pt;}
.yb0{bottom:934.533333pt;}
.y46{bottom:934.693333pt;}
.y9{bottom:939.493333pt;}
.y10e{bottom:942.533333pt;}
.y45{bottom:950.533333pt;}
.yaf{bottom:958.533333pt;}
.y18a{bottom:966.373333pt;}
.y8{bottom:966.533333pt;}
.yae{bottom:974.373333pt;}
.y189{bottom:982.213333pt;}
.y44{bottom:982.373333pt;}
.y6{bottom:989.573333pt;}
.yad{bottom:990.213333pt;}
.y43{bottom:998.213333pt;}
.y188{bottom:1005.733333pt;}
.yac{bottom:1006.053333pt;}
.y5{bottom:1006.693333pt;}
.y42{bottom:1014.053333pt;}
.yab{bottom:1021.920000pt;}
.y4{bottom:1023.040000pt;}
.y41{bottom:1029.920000pt;}
.y3{bottom:1036.640000pt;}
.yaa{bottom:1037.920000pt;}
.y40{bottom:1045.920000pt;}
.y2{bottom:1050.240000pt;}
.y3d{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h12{height:10.678125pt;}
.h14{height:20.178667pt;}
.h1c{height:34.710938pt;}
.h18{height:35.506667pt;}
.hf{height:36.305625pt;}
.h16{height:41.586667pt;}
.h5{height:42.084375pt;}
.h10{height:44.160000pt;}
.hd{height:45.938667pt;}
.hc{height:47.085938pt;}
.h6{height:47.109375pt;}
.h13{height:47.742188pt;}
.ha{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h11{height:49.968750pt;}
.h9{height:53.370000pt;}
.h19{height:53.535000pt;}
.h15{height:56.146667pt;}
.h2{height:57.787500pt;}
.h4{height:58.563750pt;}
.h7{height:61.920000pt;}
.h3{height:62.812500pt;}
.h17{height:63.506667pt;}
.h1b{height:64.500000pt;}
.he{height:66.625000pt;}
.h8{height:75.465000pt;}
.hb{height:380.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:132.470667pt;}
.w4{width:493.400000pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.198667pt;}
.x5{left:48.000000pt;}
.x8{left:57.440000pt;}
.x9{left:64.801333pt;}
.xb{left:72.000000pt;}
.x6{left:79.712000pt;}
.xc{left:84.672000pt;}
.x16{left:96.032000pt;}
.xf{left:194.586667pt;}
.x14{left:216.520000pt;}
.x1{left:233.466667pt;}
.x2{left:272.706667pt;}
.x13{left:274.786667pt;}
.x4{left:302.946667pt;}
.x3{left:313.826667pt;}
.xe{left:420.893333pt;}
.x11{left:444.733333pt;}
.xd{left:457.533333pt;}
.x15{left:468.893333pt;}
.x12{left:546.973333pt;}
.x10{left:732.480000pt;}
.x7{left:739.200000pt;}
}




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